aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/dotless-targs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/dotless-targs.scala')
-rw-r--r--tests/pending/pos/dotless-targs.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/pending/pos/dotless-targs.scala b/tests/pending/pos/dotless-targs.scala
deleted file mode 100644
index 8c0e244e4..000000000
--- a/tests/pending/pos/dotless-targs.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-class A {
- def fn1 = List apply 1
- def fn2 = List apply[Int] 2
-
- def g1: Char = "g1" toList 0
- def g2: Char = "g2" apply 1
-
- def h1 = List apply[List[Int]] (List(1), List(2)) mapConserve[List[Any]] (x => x)
-}