blob: 2fb793f7934331fd978745ad831cd26f567a9a68 [file] [log] [blame]
public class Test implements B
{
public static void main(String args[])
{
Test t = new Test();
B a = (B) t;
a.a();
}
public void a()
{
System.out.println("A");
}
public void b()
{
System.out.println("B");
}
}