summaryrefslogtreecommitdiff
path: root/test/files/neg/bug4419.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-05-23 20:36:30 +0000
committerPaul Phillips <paulp@improving.org>2011-05-23 20:36:30 +0000
commitd3ff7ee9fcac1d10c145bbd1f37a69b989a73cdf (patch)
treed70b1a6a6d73827748f2a7a95d2846867ce12983 /test/files/neg/bug4419.scala
parente6b0beaa4c41a46bb9eb492f3fad6ff6589fa5ea (diff)
downloadscala-d3ff7ee9fcac1d10c145bbd1f37a69b989a73cdf.tar.gz
scala-d3ff7ee9fcac1d10c145bbd1f37a69b989a73cdf.tar.bz2
scala-d3ff7ee9fcac1d10c145bbd1f37a69b989a73cdf.zip
Fix for failing { val x = classOf[List[_]] } in...
Fix for failing { val x = classOf[List[_]] } introduced by paulp in r23262. I already had this in mind (see comments of #4419) but I was holding back in the runup to 2.9. Closes #4419, review by odersky.
Diffstat (limited to 'test/files/neg/bug4419.scala')
-rw-r--r--test/files/neg/bug4419.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/neg/bug4419.scala b/test/files/neg/bug4419.scala
new file mode 100644
index 0000000000..38a34be489
--- /dev/null
+++ b/test/files/neg/bug4419.scala
@@ -0,0 +1,3 @@
+class A {
+ { val b = a; val a = 1 }
+} \ No newline at end of file