summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr149322/TestFail.java
blob: 549a48b3b21228660c60893a30149dff78267ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class TestFail {

	public void invoke () {
		Interface i = new Missing();
		i.method();
		Missing cf = new Missing();
		cf.method();
	}
	
	public static void main(String[] args) {
		new TestFail().invoke();
	}

}