blob: 73b2ef78869a1f3f270dc0d58cef80cb27e6e4a8 [file] [log] [blame]
// @dart = 2.9
library test;
import 'infer_statics_with_method_invocations_a.dart';
class T {
static String m2(e) {}
static T m1(String m) {}
static final T foo = m1(m2(m3('', '')));
}
main() {}