blob: 58cff4565b8007bfc29c5d7eb0abcef14c7b53f2 [file] [log] [blame]
// Test case for Issue #1209
// https://github.com/typetools/checker-framework/issues/1209
import org.checkerframework.checker.signedness.qual.PolySigned;
public class PolymorphicReturnType {
public @PolySigned byte get() {
// :: error: (return)
return 0;
}
}