blob: 5829fdec347846581164e769bce21d613fe90c0e [file] [log] [blame]
// Copyright (c) 2021, 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
* NORM(C<T0, ..., Tn>) = C<R0, ..., Rn> where Ri is NORM(Ti)
*
* @description Checks that NORM(C<T0, ..., Tn>) = C<R0, ..., Rn> where Ri is
* NORM(Ti). Test Null?, dynamic?, Never?
*
* @author sgrekhov@unipro.ru
*/
// Requirements=nnbd-weak
class A<X> {}
class B<X> implements A<X> {}
class C<T1, T2, T3> {}
class Test extends B<C<Null?, dynamic?, Never?>> implements
A<C<Null, dynamic, Null>> {}
main() {
new Test();
}