blob: 3a22446070dca270a59d58e7429f665eb5228a30 [file] [log] [blame]
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();
}
}