summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@gmail.com>2012-05-14 10:32:50 +0200
committerHubert Plociniczak <hubert.plociniczak@gmail.com>2012-05-14 10:32:50 +0200
commitefdac16e04bc1cd64113ad22fb4aa8f5191a316f (patch)
treeb302a4f64913a7fa60ff2bd84c4df55b58dc3140 /test/files/pos
parent97046e6cbe8dfc5d5b672d1a490071b68cbdad9a (diff)
downloadscala-efdac16e04bc1cd64113ad22fb4aa8f5191a316f.tar.gz
scala-efdac16e04bc1cd64113ad22fb4aa8f5191a316f.tar.bz2
scala-efdac16e04bc1cd64113ad22fb4aa8f5191a316f.zip
Closes SI-5796.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t5796.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos/t5796.scala b/test/files/pos/t5796.scala
new file mode 100644
index 0000000000..d05350c535
--- /dev/null
+++ b/test/files/pos/t5796.scala
@@ -0,0 +1,8 @@
+object Bug {
+ def foo() {
+ val v = {
+ lazy val s = 0
+ s
+ }
+ }
+}