aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/i2151.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/neg/i2151.scala')
-rw-r--r--tests/neg/i2151.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/neg/i2151.scala b/tests/neg/i2151.scala
new file mode 100644
index 000000000..1ae034c02
--- /dev/null
+++ b/tests/neg/i2151.scala
@@ -0,0 +1,6 @@
+trait Test {
+ type Nil = [K] => K
+ type StrangeCons[H, Tail <: [H, A] => H] = Tail[H, H]
+
+ def list: StrangeCons[Int, Nil] // error
+}