summaryrefslogtreecommitdiff
path: root/test/files/run/t7106/test.scala
blob: 3584a272db457128864ebd8333b4e25a55c575d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.tools.partest.BytecodeTest

object Test extends BytecodeTest {
  def show {
    val node1 = loadClassNode("Sub1")
    val node2 = loadClassNode("Sub2")

    sameMethodAndFieldSignatures(node1, node2)
  }
}