From 3f192157811eb268d46f3a71011a5b2b966faa14 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Thu, 26 May 2011 04:43:01 +0000 Subject: Finished reverting the misbegotten r23262, no r... Finished reverting the misbegotten r23262, no review. --- test/pending/pos/no-widen-locals.scala | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/pending/pos/no-widen-locals.scala (limited to 'test/pending') 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 + } + } +} -- cgit v1.2.3