summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr119210/TestLib.java
blob: 09f1770a50f5d8e85ab8493783428b9039927924 (plain)
1
2
3
4
5
6
7
8
public class TestLib {

          public static void main(String[] args) {
                System.err.println("obtaining five, got "+new TestLib().getFive());
          }
          
          public int getFive() { return 5; }
}