summaryrefslogtreecommitdiff
path: root/test/files/run/t1110.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1110.scala')
-rw-r--r--test/files/run/t1110.scala6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/files/run/t1110.scala b/test/files/run/t1110.scala
index 824643868c..81917789c8 100644
--- a/test/files/run/t1110.scala
+++ b/test/files/run/t1110.scala
@@ -1,8 +1,12 @@
+
+
+import scala.language.{ reflectiveCalls }
+
class Stuff {
def zoop(p: Any{def &(q: Int): Int}) = p & 7
def floop = new { def & = "Hello" }
- assert((floop &) == "Hello")
+ assert((floop.&) == "Hello")
assert(zoop(10) == 2)
}