summaryrefslogtreecommitdiff
path: root/test/files/run/repl-javap-memfun.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/repl-javap-memfun.scala')
-rw-r--r--test/files/run/repl-javap-memfun.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/files/run/repl-javap-memfun.scala b/test/files/run/repl-javap-memfun.scala
deleted file mode 100644
index d2b4243c8b..0000000000
--- a/test/files/run/repl-javap-memfun.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.tools.partest.JavapTest
-
-object Test extends JavapTest {
- def code = """
- |object Betty {
- | List(1,2,3) count (_ % 2 != 0)
- | def f = List(1,2,3) filter (_ % 2 != 0) map (_ * 2)
- | def g = List(1,2,3) filter (_ % 2 == 0) map (_ * 3) map (_ + 1)
- |}
- |:javap -fun Betty#g
- """.stripMargin
-
- // three anonfuns of Betty#g
- override def yah(res: Seq[String]) = {
- def filtered = res filter (_ contains "public final class Betty")
- 3 == filtered.size
- }
-}