2015-05-15 01:56:14 -07:00

8 lines
103 B
Java

/* /nodynamiccopyright/ */
package one;
public abstract class Parent {
abstract void method();
}