blob: 7235e9998e5a0e62a233cc24c2e92ee0fa5f81c6 [file] [log] [blame]
// "Replace inheritance with qualified references in this class" "true"
public class ConstImpl <caret>{
{
int i = Const.DDDD;
}
}
interface Const {
int DDDD = 0;
}