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