blob: 2308aafb1495b32897e201ab0d717fd57bcf8cc3 [file] [log] [blame]
// Test case for Issue #671
// https://github.com/typetools/checker-framework/issues/671
public class Issue671 {
void foo() {
byte var = 0;
boolean f = (var == (method() ? 2 : 0));
}
boolean method() {
return false;
}
}