summaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr342323/Runner.java
blob: 71a2b974eba845b787e8ffd8e1921ccb87020d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ppp;
public class Runner {
  public static void main(String[] argv) {
    new Runner().run();
  }

  public void run() {
   Bean c = new Bean();
    System.out.println("Calling regular method");
    c.m();
    System.out.println("Calling itd method");
    c.foo();
  }
}