aboutsummaryrefslogtreecommitdiffstats
path: root/tests/migration/Program.java
blob: a4568bd67c1725fd22c48514d1192af17e27dce8 (plain)
1
2
3
4
5
6
7
8
9
10
public class Program {

  public static void main(String[] argv) {
    new Program().printHello();
  }

  public void printHello() {
    System.err.println("Hello");
  }
}