summaryrefslogtreecommitdiff
path: root/test/files/res/t5167/t5167_2.scala
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-06-08 13:23:16 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-06-08 13:23:16 -0700
commit8bc3352573bb8cd7e993608697e02f1fefd50ec1 (patch)
treeb7542e51fa406b5b91553b0b85764a662523340f /test/files/res/t5167/t5167_2.scala
parent59f0214e5d8603572f50514666ec24e274747369 (diff)
parent09bf95675b06a0912ab1e3c8cdcab9a19eca48d4 (diff)
downloadscala-8bc3352573bb8cd7e993608697e02f1fefd50ec1.tar.gz
scala-8bc3352573bb8cd7e993608697e02f1fefd50ec1.tar.bz2
scala-8bc3352573bb8cd7e993608697e02f1fefd50ec1.zip
Merge pull request #660 from retronym/ticket/5167-3
SI-5167 An impl class method should refer to its own parameter symbols.
Diffstat (limited to 'test/files/res/t5167/t5167_2.scala')
-rw-r--r--test/files/res/t5167/t5167_2.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/res/t5167/t5167_2.scala b/test/files/res/t5167/t5167_2.scala
new file mode 100644
index 0000000000..5aa56efe75
--- /dev/null
+++ b/test/files/res/t5167/t5167_2.scala
@@ -0,0 +1,7 @@
+package compilerbug
+
+class TestClass {
+ def repro() {
+ SadObject.buggyMethod[Int]()()
+ }
+}