summaryrefslogtreecommitdiff
path: root/test/neg/bounds.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/neg/bounds.scala')
-rw-r--r--test/neg/bounds.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/neg/bounds.scala b/test/neg/bounds.scala
deleted file mode 100644
index f9fbeaa674..0000000000
--- a/test/neg/bounds.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-class I {
- def i(): Unit = {}
-}
-class J extends I {
- def j(): Unit = {}
-}
-class A[T >: I](init: T) {
- var y: T = new B();
- class B() extends I {}
-}
-class B[T >: J](init: T) extends A[T](init) {
-}