summaryrefslogtreecommitdiff
path: root/test/pending/neg/t2994b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/neg/t2994b.scala')
-rw-r--r--test/pending/neg/t2994b.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/pending/neg/t2994b.scala b/test/pending/neg/t2994b.scala
deleted file mode 100644
index 20be85eb58..0000000000
--- a/test/pending/neg/t2994b.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-trait curry[s[_]] { type f = Double }
-
-// a1 and a2 fail to compile, but all three should fail.
-class A {
- type a1[s[_ <: Int]] = curry[s]
- type a2[s[_ <: Int]] = curry[s]#f
- type a3[s[_ <: Int]] = Set[curry[s]#f]
-}