summaryrefslogtreecommitdiff
path: root/test/files/run/t3175.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3175.scala')
-rw-r--r--test/files/run/t3175.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/t3175.scala b/test/files/run/t3175.scala
index aff2e67d0d..5c6daead38 100644
--- a/test/files/run/t3175.scala
+++ b/test/files/run/t3175.scala
@@ -1,6 +1,9 @@
/** A bit down the road this test will examine
* the bytecode.
*/
+
+import scala.language.reflectiveCalls
+
object Test {
def len(x:{ def length: Int }) = x.length
def f1(x:{ def apply(x: Int): Long }) = x(0)