blob: 40cbc000b6a5b26f6beef6fed8de27f86e3c3730 [file] [log] [blame]
class Foo<T> {
const Foo(List x) : foo = x is List<T> ? const [1] : const [2];
final List<int> foo;
}
main() {}