summaryrefslogtreecommitdiffstats
path: root/tests/bugs165/pr272825/Main.java
blob: 9fb8cf08e4ff136616dd272e6970ff7e954d091a (plain)
1
2
3
4
5
6
7
8
9
public class Main {
	
	public static void main(String args[]) {
		Concrete c = new Concrete();
		c.doSomethingElseWith(1);
		c.doSomethingWith(2);
	}
	
}