summaryrefslogtreecommitdiff
path: root/test/pending/pos/no-widen-locals.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-03-10 10:00:54 -0700
committerPaul Phillips <paulp@improving.org>2013-03-10 21:04:42 -0700
commitcb02c96bed1454e1c0702c529366f3c40d6bffd9 (patch)
treee0b7d091bf99e750188e26a150db46bd4073ea84 /test/pending/pos/no-widen-locals.scala
parent2fa2db784075dfb58cf507c45a948819ade8a6d4 (diff)
downloadscala-cb02c96bed1454e1c0702c529366f3c40d6bffd9.tar.gz
scala-cb02c96bed1454e1c0702c529366f3c40d6bffd9.tar.bz2
scala-cb02c96bed1454e1c0702c529366f3c40d6bffd9.zip
Simplified the widening logic.
Should speak for itself. Whenever someone changed @switch from an error to a warning, it broke all the tests which depended on the error. I added -Xfatal-warnings to a couple which needed it. And one of those tests was then failing, as it must now since we couldn't get away with what was being attempted, so I moved it to pending.
Diffstat (limited to 'test/pending/pos/no-widen-locals.scala')
-rw-r--r--test/pending/pos/no-widen-locals.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/pending/pos/no-widen-locals.scala b/test/pending/pos/no-widen-locals.scala
new file mode 100644
index 0000000000..013e63f0a2
--- /dev/null
+++ b/test/pending/pos/no-widen-locals.scala
@@ -0,0 +1,19 @@
+// Worked from r23262 until that was reverted somewhere
+// around r25016.
+import annotation.switch
+
+object Test {
+ def f(x: Int) = {
+ val X1 = 5
+ val X2 = 10
+ val X3 = 15
+ val X4 = 20
+
+ (x: @switch) match {
+ case X1 => 1
+ case X2 => 2
+ case X3 => 3
+ case X4 => 4
+ }
+ }
+}