blob: 265696edc72da88ad3aa65a2cf2de2e1e21437ac [file] [log] [blame]
class Library {
static void call() {}
static String getString() { return ""; }
}
class User {
void main() {
Library.call();
Library.getString().isEmpty();
}
}