summaryrefslogtreecommitdiffstats
path: root/tests/features167/overweaving/cflow/C.java
blob: 8c760bb60b3fc6ce98f8961444f6e87547a1ae2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.andy;

public class C {
  public String name = "andy";

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

  public void run() {
    System.out.println("hello "+name);
  }
}