summaryrefslogtreecommitdiff
path: root/test/files/run/idempotency-labels.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-12-04 12:35:13 +0100
committerEugene Burmako <xeno.by@gmail.com>2012-12-04 13:43:23 +0100
commit502818157671ff1d62264091b0102d05a42ff352 (patch)
treed24edb5dbe04348f26173503b6c359360582187a /test/files/run/idempotency-labels.check
parent2a8291a3568abc848e79acaacd82e90932a77c8a (diff)
downloadscala-502818157671ff1d62264091b0102d05a42ff352.tar.gz
scala-502818157671ff1d62264091b0102d05a42ff352.tar.bz2
scala-502818157671ff1d62264091b0102d05a42ff352.zip
tests for idempotency issues in the typechecker
For more details see https://issues.scala-lang.org/browse/SI-5464. Check files are intentionally very precise, so that we can monitor how the situation changes over time.
Diffstat (limited to 'test/files/run/idempotency-labels.check')
-rw-r--r--test/files/run/idempotency-labels.check15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/idempotency-labels.check b/test/files/run/idempotency-labels.check
new file mode 100644
index 0000000000..8709efeb43
--- /dev/null
+++ b/test/files/run/idempotency-labels.check
@@ -0,0 +1,15 @@
+2
+{
+ var x: Int = 0;
+ while$1(){
+ if (x.<(2))
+ {
+ x = x.+(1);
+ while$1()
+ }
+ else
+ ()
+ };
+ x
+}
+2