blob: 9fd5a14fb402214367e5e8870bf9dc27e21c1fed [file] [log] [blame]
package bugs_out;
public class Test_50139 {
static class Provider {
public static final String ID= "id";
public static String getId() {
return ID;
}
}
public void foo() {
String s= Provider.ID/*[*/;
}
}