blob: 401c8db90a767b79a374836de2a7f0b2757a4df0 [file] [log] [blame]
// Test case for Issue 704:
// https://github.com/typetools/checker-framework/issues/704
import java.util.function.IntSupplier;
interface Issue704 {
IntSupplier zero = () -> 0;
}