blob: 5bfd15a109fc57e12cb6096e2df51125d6c954e5 [file]
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});
}