summaryrefslogtreecommitdiff
path: root/test/files/run/t7852.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-09-17 15:39:11 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-09-17 15:39:11 +0200
commit2bb960c68091b804d8ace1f76460279f6567a193 (patch)
tree2b8e953d653c90c29216b4b5b41eabe40ecf83a1 /test/files/run/t7852.scala
parent9dbc321504ad5550638d6d7c2b3cd2f98273cf74 (diff)
downloadscala-2bb960c68091b804d8ace1f76460279f6567a193.tar.gz
scala-2bb960c68091b804d8ace1f76460279f6567a193.tar.bz2
scala-2bb960c68091b804d8ace1f76460279f6567a193.zip
SI-7852 Test to show the status quo bytecode for "" == ...
Will be somewhat leaner after the next commit.
Diffstat (limited to 'test/files/run/t7852.scala')
-rw-r--r--test/files/run/t7852.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/files/run/t7852.scala b/test/files/run/t7852.scala
new file mode 100644
index 0000000000..eed211c7bc
--- /dev/null
+++ b/test/files/run/t7852.scala
@@ -0,0 +1,20 @@
+import scala.tools.partest.BytecodeTest
+import scala.tools.asm.util._
+import scala.tools.nsc.util.stringFromWriter
+
+object Test extends BytecodeTest {
+ def show {
+ val classNode = loadClassNode("Lean")
+ val meth = getMethod(classNode, "foo")
+ println(meth.getClass)
+ val textifier = new Textifier()
+ meth.accept(new TraceMethodVisitor(textifier))
+ println(stringFromWriter(w => textifier.print(w)))
+ }
+}
+
+class Lean {
+ def foo {
+ "" == toString
+ }
+}