summaryrefslogtreecommitdiff
path: root/test/files/pos/t1131.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-10-08 14:30:28 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-10-08 14:30:28 +0000
commit29a8a8f77998b640f5083e87cd735301dd63922a (patch)
tree736f117d9efd23cea15393976a3066a01a78015d /test/files/pos/t1131.scala
parentdbe66d06722cc31b7d898390315daf07daf05c54 (diff)
downloadscala-29a8a8f77998b640f5083e87cd735301dd63922a.tar.gz
scala-29a8a8f77998b640f5083e87cd735301dd63922a.tar.bz2
scala-29a8a8f77998b640f5083e87cd735301dd63922a.zip
Moved successful tests from pending.
Diffstat (limited to 'test/files/pos/t1131.scala')
-rwxr-xr-xtest/files/pos/t1131.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/t1131.scala b/test/files/pos/t1131.scala
new file mode 100755
index 0000000000..5ef980348d
--- /dev/null
+++ b/test/files/pos/t1131.scala
@@ -0,0 +1,4 @@
+trait A { self: Any { def p: Any } =>
+ def f(b: => Unit) {}
+ f { p }
+}