summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1024.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1024.scala')
-rw-r--r--test/pending/pos/t1024.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/pending/pos/t1024.scala b/test/pending/pos/t1024.scala
new file mode 100644
index 0000000000..0bd5b026a5
--- /dev/null
+++ b/test/pending/pos/t1024.scala
@@ -0,0 +1,4 @@
+object Test {
+ trait T { trait U { val x = 3 } }
+ val x = new AnyRef with T#U { }
+}