From c2bb028deb7a03acb5dcf2fa905a466fef8be1a6 Mon Sep 17 00:00:00 2001 From: Miguel Garcia Date: Mon, 6 Aug 2012 21:37:43 +0200 Subject: test case for SI-6102 --- test/files/run/t6102.check | 1 + test/files/run/t6102.flags | 1 + test/files/run/t6102.scala | 13 +++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 test/files/run/t6102.check create mode 100644 test/files/run/t6102.flags create mode 100644 test/files/run/t6102.scala (limited to 'test/files') 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") + } + } +} + -- cgit v1.2.3