blob: 6e0a881798868133a42327f23057a0598ceee547 [file] [log] [blame]
package p;
class A {
public static final int CONST= 17;
Test(int num) {}
void run() {
new Test(CONST);
}
}