blob: 41a5d84d89d7c3568f160295f620ca53c7ad4f6e [file] [log] [blame]
package test0416;
interface I {
int CONST= 1;
}
public class A {
void foo() {
int x= I.CONST;
}
}