blob: 2e6854ecf072ad741a66ed7793245d51cf8f561d [file] [log] [blame]
//selection: 7, 17, 7, 19
package invalid;
class PartName1 {
public static int foo() { return 17; }
void bar() {
int a= foo();
}
void use() {
bar();
}
}