blob: 7c69cd15cd375b3396095291fef20bd907814aa9 [file] [log] [blame]
// @dart = 2.9
class C<T> {
const C();
static C<T> staticMethod() {}
C<T> instanceMethod() {}
}
main() {}