summaryrefslogtreecommitdiff
path: root/test/files/run/t7106/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7106/test.scala')
-rw-r--r--test/files/run/t7106/test.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/t7106/test.scala b/test/files/run/t7106/test.scala
new file mode 100644
index 0000000000..3584a272db
--- /dev/null
+++ b/test/files/run/t7106/test.scala
@@ -0,0 +1,10 @@
+import scala.tools.partest.BytecodeTest
+
+object Test extends BytecodeTest {
+ def show {
+ val node1 = loadClassNode("Sub1")
+ val node2 = loadClassNode("Sub2")
+
+ sameMethodAndFieldSignatures(node1, node2)
+ }
+}