summaryrefslogtreecommitdiff
path: root/test/files/neg/t0204.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t0204.scala')
-rwxr-xr-xtest/files/neg/t0204.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/neg/t0204.scala b/test/files/neg/t0204.scala
new file mode 100755
index 0000000000..0de9d9d16d
--- /dev/null
+++ b/test/files/neg/t0204.scala
@@ -0,0 +1,5 @@
+object Program {
+ trait A { type T }
+ type B = A { type T = String }
+ trait C extends B
+}