aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/hklower.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/neg/hklower.scala')
-rw-r--r--tests/neg/hklower.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/neg/hklower.scala b/tests/neg/hklower.scala
deleted file mode 100644
index 5c1ba27ba..000000000
--- a/tests/neg/hklower.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-class Test { // error conflicting bounds
-
- type T[X] // OK
- type U[X] = T[X] // OK
-
- type V[X] >: T[X] // error
- type W[X] >: T[X] <: T[X] // error
-
- def f[C[X] >: T[X]]() = ??? // error
-
-}