Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.compile / invokeinterface / Test.java
blob2fb793f7934331fd978745ad831cd26f567a9a68
1 public class Test implements B
3 public static void main(String args[])
5 Test t = new Test();
6 B a = (B) t;
7 a.a();
10 public void a()
12 System.out.println("A");
15 public void b()
17 System.out.println("B");