blob: 0b6c6ab3ab368a5b15e760128ee4aafd1180eeb5 [file] [log] [blame]
// Test case for Issue 1864:
// https://github.com/typetools/checker-framework/issues/1864
public class Issue1864b {
interface Supplier {
Object get();
}
Supplier foo() {
Object foo = new Object();
return () -> foo;
}
}