summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-03-16 10:00:17 -0700
committerPaul Phillips <paulp@improving.org>2012-03-16 10:00:17 -0700
commit87992a842e8c7bd1ee0e5acadefaf3e84848e835 (patch)
treeb4449c96378ad6a3f48ec7d59fc7f7aee31d4da2 /test/files
parentf553ebb2dd0284805d8e49d48969ebde48ae2e25 (diff)
downloadscala-87992a842e8c7bd1ee0e5acadefaf3e84848e835.tar.gz
scala-87992a842e8c7bd1ee0e5acadefaf3e84848e835.tar.bz2
scala-87992a842e8c7bd1ee0e5acadefaf3e84848e835.zip
Revert "More uniformity for the parser."
This reverts commit f987afe55e6d4f71c7e9ad10d1ca9f6120dc1132. Looks like somebody misread the grammar. Look for it to return in one of paulp's exclusive branches for today's discriminating hacker.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/dotless-targs.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/files/pos/dotless-targs.scala b/test/files/pos/dotless-targs.scala
deleted file mode 100644
index 8337352d18..0000000000
--- a/test/files/pos/dotless-targs.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-class A {
- def fn1 = List apply 1
- def fn2 = List apply[Int] 2
-
- def f1 = "f1" isInstanceOf[String]
-
- def g1 = "g1" toList
- def g2 = "g2" toList 2
- def g3 = "g3" apply 3
-
- def h1 = List apply[List[Int]] (List(1), List(2)) mapConserve[List[Any]] (x => x)
-}