blob: 236734c7079e9ff19964c45ff76f09720c924cef [file] [log] [blame]
// "Create Enum 'Foo'" "true"
public class Test {
void f(I i) {}
{
f(Foo.CONST);
}
}
interface I {}
public enum Foo implements I {}