blob: 2f73f73766c7fe5a713c460f785b2e93563510e4 [file] [log] [blame]
// Copyright (c) 2020, 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.
/// @assertion We say that a type T is non-nullable if T <: Object. This is
/// equivalent to the syntactic criterion that T is any of:
/// Never
/// Any function type (including Function)
/// Any interface type except Null.
/// S* for some S where S is non-nullable
/// FutureOr<S> where S is non-nullable
/// X extends S where S is non-nullable
/// X & S where S is non-nullable
///
/// @description Check that type which is not subtype of Object cannot be
/// assigned to non-nullable type. Test X extends S where S is non-nullable. Test
/// legacy pre-NNBD types
/// @author sgrekhov@unipro.ru
// Requirements=nnbd-weak
import "legacy_lib.dart";
class C<X extends A> {
test(X t) {
t = null;
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
}
main() {
C<A>().test(new A());
}