aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t7126.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t7126.scala')
-rw-r--r--tests/pending/pos/t7126.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/pos/t7126.scala b/tests/pending/pos/t7126.scala
deleted file mode 100644
index edac56d28..000000000
--- a/tests/pending/pos/t7126.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-import language._
-
-object Test {
- type T = Any
- boom(???): Option[T] // SOE
- def boom[CC[U]](t : CC[T]): Option[CC[T]] = None
-
- // okay
- foo(???): Option[Any]
- def foo[CC[U]](t : CC[Any]): Option[CC[Any]] = None
-}