blob: 656d9fb326c54d14ff7fca387a91f32e1cf65869 [file] [log] [blame]
// @dart = 2.9
library test;
const v = C.f;
class C {
static int f(String s) => null;
}
main() {}