aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0055.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/t0055.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/t0055.scala')
-rw-r--r--tests/pos/t0055.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/pos/t0055.scala b/tests/pos/t0055.scala
new file mode 100644
index 000000000..079629440
--- /dev/null
+++ b/tests/pos/t0055.scala
@@ -0,0 +1,6 @@
+class X(x : Any)
+class W {
+ new X(new Z() with Y) {}
+ trait Y { def y = () }
+}
+class Z(r : Any) { def this() = this(null) }