blob: 67b768e77140c99a4ff0696e6a88dfc4180a7d8a [file] [log] [blame]
//method
// !SPECIFY_LOCAL_VARIABLE_TYPE_BY_DEFAULT: true
void foo(boolean b) {
String s = "abc";
if (b) {
s = null;
}
}