summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-01-17 12:03:50 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-01-17 12:03:50 -0800
commitdf75794426236186dcef0dfd1a72ad55d7b870c2 (patch)
treeaf913fade680f61afc17282c3ad798e09aae8426 /test
parenta5b0fc49e517d1c63d22f9909ac9bed0552ed466 (diff)
parenta1c00ae4b2df051c33384269b6b983746e537aee (diff)
downloadscala-df75794426236186dcef0dfd1a72ad55d7b870c2.tar.gz
scala-df75794426236186dcef0dfd1a72ad55d7b870c2.tar.bz2
scala-df75794426236186dcef0dfd1a72ad55d7b870c2.zip
Merge pull request #3283 from paulp/pr/dotless-targs
Dotless type application for infix operators.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/dotless-targs.check4
-rw-r--r--test/files/neg/dotless-targs.scala5
-rw-r--r--test/files/pos/dotless-targs.scala9
3 files changed, 18 insertions, 0 deletions
diff --git a/test/files/neg/dotless-targs.check b/test/files/neg/dotless-targs.check
new file mode 100644
index 0000000000..4aab939f61
--- /dev/null
+++ b/test/files/neg/dotless-targs.check
@@ -0,0 +1,4 @@
+dotless-targs.scala:2: error: type application is not allowed for postfix operators
+ def f1 = "f1" isInstanceOf[String] // not ok
+ ^
+one error found
diff --git a/test/files/neg/dotless-targs.scala b/test/files/neg/dotless-targs.scala
new file mode 100644
index 0000000000..eff63cbec4
--- /dev/null
+++ b/test/files/neg/dotless-targs.scala
@@ -0,0 +1,5 @@
+class A {
+ def f1 = "f1" isInstanceOf[String] // not ok
+ def f2 = "f2".isInstanceOf[String] // ok
+ def f3 = "f3" toList // ok
+}
diff --git a/test/files/pos/dotless-targs.scala b/test/files/pos/dotless-targs.scala
new file mode 100644
index 0000000000..8c0e244e4e
--- /dev/null
+++ b/test/files/pos/dotless-targs.scala
@@ -0,0 +1,9 @@
+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)
+}