aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/generic-sigs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/generic-sigs.scala')
-rw-r--r--tests/pending/pos/generic-sigs.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/pending/pos/generic-sigs.scala b/tests/pending/pos/generic-sigs.scala
deleted file mode 100644
index b751e215e..000000000
--- a/tests/pending/pos/generic-sigs.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-import language.existentials
-
-object A {
- def f1 = List(classOf[Int], classOf[String])
- def f2 = List(classOf[String], classOf[Int])
- def f3(x: Class[_ <: Int]) = x
- def f4(x: Class[_ <: String with Int]) = x
- def f5(x: Class[_ <: Int with String]) = x
-
- class Bippy[T]
- def f6(x: Int) = new Bippy[t forSome { type t <: Int }]
- def f7(x: T forSome { type T <: Float }) = x
- def f8(x: T forSome { type T <: Unit }) = x
- def f9(x: T forSome { type T <: scala.runtime.BoxedUnit }) = x
- def f10(x: Int) = new Bippy[t forSome { type t <: Unit }]
- def f11(x: Int) = new Bippy[t forSome { type t >: Null }]
-
- class Boppy[+T1,-T2]
- def g1 = new Boppy[t forSome { type t <: Int }, u forSome { type u <: String }]
-}