summaryrefslogtreecommitdiff
path: root/test/pending/jvm/patmat_opt_no_nullcheck/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/jvm/patmat_opt_no_nullcheck/test.scala')
-rw-r--r--test/pending/jvm/patmat_opt_no_nullcheck/test.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/pending/jvm/patmat_opt_no_nullcheck/test.scala b/test/pending/jvm/patmat_opt_no_nullcheck/test.scala
deleted file mode 100644
index 5a4a398b67..0000000000
--- a/test/pending/jvm/patmat_opt_no_nullcheck/test.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * filter: inliner warning; re-run with
- */
-import scala.tools.partest.{ BytecodeTest, ASMConverters }
-
-object Test extends BytecodeTest {
- def show: Unit = {
- val classNode = loadClassNode("SameBytecode")
- // ASM and GenBCode assign variable slots slightly differently
- val instrsA = ASMConverters.instructionsFromMethod(getMethod(classNode, "a"))
- val instrsB = ASMConverters.instructionsFromMethod(getMethod(classNode, "b"))
- assert(ASMConverters.equivalentBytecode(instrsA, instrsB), diffInstructions(instrsA, instrsB)) // doesn't work
- }
-}