blob: 13d416c16f805827d79031c37dbefcf0a3119312 [file] [log] [blame]
import 'const_patterns.dart' as prefix;
const int value = 42;
void func() {}
class Class {
const Class([a]);
const Class.named();
call() {}
test(o) async {}
}
class GenericClass<T> {
const GenericClass({a});
}