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