public interface foo {
  public void printMe() {
    System.out.println("Hi, I'm a foo");
  }
  public static void sPrintMe() {
    System.out.println("Hi, I'm a foo, from a static context");
  }
}
