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