summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-25 08:13:02 -0800
committerPaul Phillips <paulp@improving.org>2013-01-25 08:13:02 -0800
commitb49eaefd816a80ad7d04b150c16f8e76cfbdb03e (patch)
treee06b1f3afd4266ec1078bc136ce6e274be746a2e /test/files/run
parent5e2821caef2f49185338c01a7cb8a4e5e0155b7a (diff)
parentcbd0205999d19e378f9f7ac8ca685a134862cf47 (diff)
downloadscala-b49eaefd816a80ad7d04b150c16f8e76cfbdb03e.tar.gz
scala-b49eaefd816a80ad7d04b150c16f8e76cfbdb03e.tar.bz2
scala-b49eaefd816a80ad7d04b150c16f8e76cfbdb03e.zip
Merge pull request #1928 from retronym/ticket/6902
SI-6902 Check unreachability under @unchecked
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t6011c.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/t6011c.scala b/test/files/run/t6011c.scala
new file mode 100644
index 0000000000..0647e3f81a
--- /dev/null
+++ b/test/files/run/t6011c.scala
@@ -0,0 +1,13 @@
+object Test extends App {
+ // A variation of SI-6011, which eluded the fix
+ // in 2.10.0.
+ //
+ // duplicate keys in SWITCH, can't pick arbitrarily one of them to evict, see SI-6011.
+ // at scala.reflect.internal.SymbolTable.abort(SymbolTable.scala:50)
+ // at scala.tools.nsc.Global.abort(Global.scala:249)
+ // at scala.tools.nsc.backend.jvm.GenASM$JPlainBuilder$jcode$.emitSWITCH(GenASM.scala:1850)
+ ((1: Byte): @unchecked @annotation.switch) match {
+ case 1 => 2
+ case 1 => 3 // crash
+ }
+}