blob: 1c3d6d8ad285add1a46b4245cc866a9361b25721 [file] [log] [blame]
// !FORCE_NOT_NULL_TYPES: false
// !SPECIFY_LOCAL_VARIABLE_TYPE_BY_DEFAULT: true
class Library {
void call() {}
String getString() { return ""; }
}
class User {
void main() {
Library lib = new Library();
lib.call();
lib.getString().isEmpty();
new Library().call();
new Library().getString().isEmpty();
}
}