summaryrefslogtreecommitdiff
path: root/test/pending/pos/t4612.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t4612.scala')
-rw-r--r--test/pending/pos/t4612.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/pending/pos/t4612.scala b/test/pending/pos/t4612.scala
new file mode 100644
index 0000000000..a93c12ef01
--- /dev/null
+++ b/test/pending/pos/t4612.scala
@@ -0,0 +1,15 @@
+class CyclicReferenceCompilerBug {
+ trait Trait[A] {
+ def foo: A
+ }
+
+ class Class extends Trait[Class] {
+ def foo = new Class
+
+ trait OtherTrait extends Trait[OtherTrait] {
+ self: Class =>
+
+ def foo = new Class
+ }
+ }
+}