summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-07-13 06:58:53 +0000
committerPaul Phillips <paulp@improving.org>2011-07-13 06:58:53 +0000
commit60974b90da3e689112da3d54c37414f668b18155 (patch)
treedb73452f25e8eeb931d5ffb10362de5c63cf5478 /test
parent124103be216976f58548500d63933e08f3dc0096 (diff)
downloadscala-60974b90da3e689112da3d54c37414f668b18155.tar.gz
scala-60974b90da3e689112da3d54c37414f668b18155.tar.bz2
scala-60974b90da3e689112da3d54c37414f668b18155.zip
Test case closes #3371, no review.
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/bug3371.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/bug3371.scala b/test/files/pos/bug3371.scala
new file mode 100644
index 0000000000..897cd9de44
--- /dev/null
+++ b/test/files/pos/bug3371.scala
@@ -0,0 +1,9 @@
+// that compiles
+class Test(myValue:String) { println(myValue) }
+
+// that compiles too
+trait Other { val otherValue = "" }
+class Test2(myValue:String) { self:Other => println(otherValue) }
+
+// that does not compile saying that myValue is not found
+class Test3(myValue:String) { self:Other => println(myValue) }