aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/subtyping.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/subtyping.scala')
-rw-r--r--tests/pending/pos/subtyping.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/pos/subtyping.scala b/tests/pending/pos/subtyping.scala
deleted file mode 100644
index 8a3c2eb03..000000000
--- a/tests/pending/pos/subtyping.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object test {
-
- class B
- class C
-
- def tag[T](x: T): String & T = ???
-
- val x: Int & String = tag(0)
-
-}
-
-