summaryrefslogtreecommitdiff
path: root/test/pending/pos/no-widen-locals.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-05-26 04:43:01 +0000
committerPaul Phillips <paulp@improving.org>2011-05-26 04:43:01 +0000
commit3f192157811eb268d46f3a71011a5b2b966faa14 (patch)
tree58259d2ca3e449288368fe24a8ebc5305cb345b2 /test/pending/pos/no-widen-locals.scala
parentd3ff7ee9fcac1d10c145bbd1f37a69b989a73cdf (diff)
downloadscala-3f192157811eb268d46f3a71011a5b2b966faa14.tar.gz
scala-3f192157811eb268d46f3a71011a5b2b966faa14.tar.bz2
scala-3f192157811eb268d46f3a71011a5b2b966faa14.zip
Finished reverting the misbegotten r23262, no r...
Finished reverting the misbegotten r23262, no review.
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..ba568f64eb
--- /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
+ }
+ }
+}