blob: 2b83564d556d9040328c23ec67faa57c1625c5eb [file] [log] [blame]
/*
* @test
* @summary Test that the stub files get invoked
* @library .
* @compile -XDrawDiagnostics -processor org.checkerframework.checker.nullness.NullnessChecker -Astubs=sample.astub Sample.java -AstubWarnIfNotFound -Werror
*/
public class Sample {
void test() {
Object o = null;
String v = String.valueOf(o);
}
}