aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ltw/callMunging/case1/A.java
blob: 23950c6a2caa162654d392dd74b492474f31dd2b (plain)
1
2
3
4
5
6
7
public class A {
  T t = new T();
  public void method() {
	System.out.println("A.method() running");
    t.m1();
  }
}