aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0036.scala
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2014-03-21 09:17:59 +0100
committerodersky <odersky@gmail.com>2014-03-21 09:17:59 +0100
commitfd76c38000f206b3d27ac68eaeddb0f76678dfc2 (patch)
tree8355f0ef64102f569ebd970e49c2a591116d0b44 /tests/pos/t0036.scala
parentb5864b48d04adf6cab1dbe58d394ad608dafd440 (diff)
parente50646c21cbc842c1188fc876e16ea2b3e2a2ea3 (diff)
downloaddotty-fd76c38000f206b3d27ac68eaeddb0f76678dfc2.tar.gz
dotty-fd76c38000f206b3d27ac68eaeddb0f76678dfc2.tar.bz2
dotty-fd76c38000f206b3d27ac68eaeddb0f76678dfc2.zip
Merge pull request #88 from dotty-staging/try/hygienic-desugaring
Try/hygienic desugaring
Diffstat (limited to 'tests/pos/t0036.scala')
-rw-r--r--tests/pos/t0036.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/pos/t0036.scala b/tests/pos/t0036.scala
new file mode 100644
index 000000000..3c9a84f8a
--- /dev/null
+++ b/tests/pos/t0036.scala
@@ -0,0 +1,8 @@
+object m {
+
+ val xs: List[Int] = Nil
+ def f(i: Int) = 0
+ val v = xs map f
+
+ def m() = {}
+}