summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1336.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1336.scala')
-rw-r--r--test/pending/pos/t1336.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/pending/pos/t1336.scala b/test/pending/pos/t1336.scala
new file mode 100644
index 0000000000..63967985c7
--- /dev/null
+++ b/test/pending/pos/t1336.scala
@@ -0,0 +1,10 @@
+object Foo {
+ def foreach( f : ((Int,Int)) => Unit ) {
+ println("foreach")
+ f(1,2)
+ }
+
+ for( (a,b) <- this ) {
+ println((a,b))
+ }
+}