blob: 73582a866e27cb5ab2019d5690cd79e16b8335f7 [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @assertion It is a compile-time error if a parameterized type [T] is
/// super-bounded when it is used in any of the following ways:
/// [T] is an immediate subterm of a new expression (16.15.1) or a constant
/// object expression
/// @description Checks that compile error is not thrown when parametrized type
/// is used in the constant object expression with [as] constructions (see Issue
/// 37033 for more details)
/// @author iarkh@unipro.ru
class A<T extends A<T>> {
const A();
}
const b1 = null as A;
const b2 = null as A<dynamic>;
const b3 = null as A<Object>;
const b4 = null as A<Null>;
const b5 = null as A<void>;
const b6 = null as A<A>;
const b7 = null as A<A<dynamic>>;
const b8 = null as A<A<Object>>;
const b9 = null as A<A<Null>>;
const b10 = null as A<A<void>>;
main() {
}