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