summaryrefslogtreecommitdiff
path: root/test/files/neg/t6597.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-10-31 14:08:29 -0700
committerPaul Phillips <paulp@improving.org>2012-10-31 14:11:56 -0700
commit187c61a0e49c8f880a0599d64955e47e167579dc (patch)
treec237da1d040e41ce9421a29b18c3fbc2c0e4a6fa /test/files/neg/t6597.check
parent8eefac8c25c2b20e2e8d1e7de1882460e90ceeb5 (diff)
downloadscala-187c61a0e49c8f880a0599d64955e47e167579dc.tar.gz
scala-187c61a0e49c8f880a0599d64955e47e167579dc.tar.bz2
scala-187c61a0e49c8f880a0599d64955e47e167579dc.zip
Fix for SI-6597, implicit case class crasher.
It seems to me like every call to scope.lookup in the compiler is a latent bug. If a symbol is overloaded, you get one at random. (See the FIXME comment in f5c336d5660 for more on this.)
Diffstat (limited to 'test/files/neg/t6597.check')
-rw-r--r--test/files/neg/t6597.check4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/neg/t6597.check b/test/files/neg/t6597.check
new file mode 100644
index 0000000000..1d52519d1d
--- /dev/null
+++ b/test/files/neg/t6597.check
@@ -0,0 +1,4 @@
+t6597.scala:3: error: illegal combination of modifiers: implicit and case for: class Quux
+ implicit case class Quux(value: Int) extends AnyVal with T
+ ^
+one error found