summaryrefslogtreecommitdiff
path: root/test/files/pos/t8177e.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8177e.scala')
-rw-r--r--test/files/pos/t8177e.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/pos/t8177e.scala b/test/files/pos/t8177e.scala
new file mode 100644
index 0000000000..cb1136ff11
--- /dev/null
+++ b/test/files/pos/t8177e.scala
@@ -0,0 +1,3 @@
+// exercise coevolveSym
+trait T[A] { val foo: { type B = A } = ???; def bar(b: foo.B) = () }
+object O extends T[Int] { bar(0) }