blob: b2d68b4682d0e7914ce90155fe11b5fb92196e5f [file] [log] [blame]
import org.checkerframework.checker.testchecker.wholeprograminference.qual.Top;
public class ConstructorTest {
public ConstructorTest(int top) {}
void test() {
@Top int top = (@Top int) 0;
// :: warning: (argument)
new ConstructorTest(top);
}
}