summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr129408/C.java
blob: a1bcce7b1fd8ff22ce3adc11d09fa13d32bb62df (plain)
1
2
3
4
5
6
7
8
9
public class C {
	public void sayBar() {
		System.err.println("bar");
	}

  public static void main(String[]argv) {
    new C().sayBar();
  }
}