From 1a8daa2d6cbf46a7cdd9180c11c641adabcf6d92 Mon Sep 17 00:00:00 2001 From: Simon Ochsenreither Date: Wed, 16 Sep 2015 17:31:02 +0200 Subject: Remove GenASM, merge remaining common code snippets With GenBCode being the default and only supported backend for Java 8, we can get rid of GenASM. This commit also fixes/migrates/moves to pending/deletes tests which depended on GenASM before. --- .../jvm/patmat_opt_no_nullcheck/Analyzed_1.scala | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/pending/jvm/patmat_opt_no_nullcheck/Analyzed_1.scala (limited to 'test/pending/jvm/patmat_opt_no_nullcheck/Analyzed_1.scala') diff --git a/test/pending/jvm/patmat_opt_no_nullcheck/Analyzed_1.scala b/test/pending/jvm/patmat_opt_no_nullcheck/Analyzed_1.scala new file mode 100644 index 0000000000..1e4d564cdf --- /dev/null +++ b/test/pending/jvm/patmat_opt_no_nullcheck/Analyzed_1.scala @@ -0,0 +1,24 @@ +// this class's bytecode, compiled under -optimize is analyzed by the test +// method a's bytecode should be identical to method b's bytecode +case class Foo(x: Any) + +class SameBytecode { + def a = + (Foo(1): Any) match { + case Foo(_: String) => + } + + // there's no null check + def b: Unit = { + val x1: Any = Foo(1) + if (x1.isInstanceOf[Foo]) { + val x3 = x1.asInstanceOf[Foo] + if (x3.x.isInstanceOf[String]) { + val x = () + return + } + } + + throw new MatchError(x1) + } +} \ No newline at end of file -- cgit v1.2.3