blob: 425d837fd7c4e956d588bc5fd4201d96bd9e4a57 [file] [log] [blame]
import org.checkerframework.common.returnsreceiver.qual.*;
// Test basic subtyping relationships for the Returns Receiver Checker.
public class SubtypingTest {
void allSubtypingRelationships(@UnknownThis int x, @BottomThis int y) {
@UnknownThis int a = x;
@UnknownThis int b = y;
// :: error: assignment
@BottomThis int c = x; // expected error on this line
@BottomThis int d = y;
}
}