blob: 05be5b2576201c85e5236ae06cc3f9d65dd9c825 [file] [log] [blame]
import org.checkerframework.checker.nullness.qual.*;
public class FinalVar3 {
static Object method1(@Nullable Object arg) {
final Object tmp = arg;
if (tmp == null) {
return "hello";
}
// The type of the final variable is correctly refined.
tmp.hashCode();
return "bye";
}
}