summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-08-07 05:17:12 -0700
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-08-07 05:17:12 -0700
commitcd5153503da73c45c12cbac5e70aad9f90d8cd5c (patch)
tree589160db06d58680d2b2ad40c8c7c11bea1b03a2 /test/files
parent114367c0b2ce5f48186d4270c1724090fd77877b (diff)
parentc2bb028deb7a03acb5dcf2fa905a466fef8be1a6 (diff)
downloadscala-cd5153503da73c45c12cbac5e70aad9f90d8cd5c.tar.gz
scala-cd5153503da73c45c12cbac5e70aad9f90d8cd5c.tar.bz2
scala-cd5153503da73c45c12cbac5e70aad9f90d8cd5c.zip
Merge pull request #1066 from magarciaEPFL/ticket-SI-6102
SI-6102 Wrong bytecode in lazyval + no-op finally clause
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t6102.check1
-rw-r--r--test/files/run/t6102.flags1
-rw-r--r--test/files/run/t6102.scala13
3 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t6102.check b/test/files/run/t6102.check
new file mode 100644
index 0000000000..b6fc4c620b
--- /dev/null
+++ b/test/files/run/t6102.check
@@ -0,0 +1 @@
+hello \ No newline at end of file
diff --git a/test/files/run/t6102.flags b/test/files/run/t6102.flags
new file mode 100644
index 0000000000..e35535c8ea
--- /dev/null
+++ b/test/files/run/t6102.flags
@@ -0,0 +1 @@
+ -Ydead-code
diff --git a/test/files/run/t6102.scala b/test/files/run/t6102.scala
new file mode 100644
index 0000000000..53584055bb
--- /dev/null
+++ b/test/files/run/t6102.scala
@@ -0,0 +1,13 @@
+// SI-6102 Wrong bytecode in lazyval + no-op finally clause
+
+object Test {
+
+ def main(args: Array[String]) {
+ try {
+ val x = 3
+ } finally {
+ print("hello")
+ }
+ }
+}
+