blob: 5a842bc85cc366df7465792fcef2cd6bee298177 [file] [log] [blame]
import org.checkerframework.checker.lock.qual.*;
public class Issue2163Lock {
@GuardedBy Issue2163Lock() {}
void test() {
// :: error: (constructor.invocation) :: error: (guardsatisfied.location.disallowed)
new @GuardSatisfied Issue2163Lock();
}
}