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