blob: 7937a6647eb49c251ecd293b54b18074d3fd888a [file] [log] [blame]
public class FieldWithInit {
@SuppressWarnings("nullness") // Don't want to depend on Nullness Checker
Object f = foo();
Object foo(FieldWithInit this) {
return new Object();
}
}