summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-07-18 20:00:44 +0200
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-07-18 20:14:55 +0200
commit86f7bc35e5fd9c12913318ed2b31e207d6f261fb (patch)
tree6331f1b1b1ee5e12408a443edfe630fa682adfae /test/files
parenta4b7928c55c362ce489ae9ba480d2b31844ce0f1 (diff)
downloadscala-86f7bc35e5fd9c12913318ed2b31e207d6f261fb.tar.gz
scala-86f7bc35e5fd9c12913318ed2b31e207d6f261fb.tar.bz2
scala-86f7bc35e5fd9c12913318ed2b31e207d6f261fb.zip
SI-6104 support This pattern
This(name) is treated just like Ident(name) apparently this pattern was used in 2.9 code, though I'm not sure it's spec'ed
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t6104.check1
-rw-r--r--test/files/run/t6104.scala8
2 files changed, 9 insertions, 0 deletions
diff --git a/test/files/run/t6104.check b/test/files/run/t6104.check
new file mode 100644
index 0000000000..9766475a41
--- /dev/null
+++ b/test/files/run/t6104.check
@@ -0,0 +1 @@
+ok
diff --git a/test/files/run/t6104.scala b/test/files/run/t6104.scala
new file mode 100644
index 0000000000..8ab12c7752
--- /dev/null
+++ b/test/files/run/t6104.scala
@@ -0,0 +1,8 @@
+class A { Self =>
+ val ok = "ok"
+ this match {
+ case me@Self => println(me.ok)
+ }
+}
+
+object Test extends A with App \ No newline at end of file