blob: aff7d44b49289695f5e3d7a0efc9e5eca76982e3 [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 The NORM relation defines the canonical representative of classes
* of equivalent types...
* This is based on the following equations:
* Never? == Null
*
* @description Checks that Null? == Null
*
* @author sgrekhov@unipro.ru
*/
// Requirements=nnbd-weak
class A<X> {}
class B<X> implements A<X> {}
class C extends B<Never?> implements A<Null> {}
main() {
new C();
}