package java_integration.fixtures;

public class PackageStaticMethod {
  static String thePackageScopeMethod() {
    return "42";
  }
}