blob: 1564b9c1361bfa5e675f223dcfbc2282e720bc56 [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 The NORM relation defines the canonical representative of classes
* of equivalent types...
* This is based on the following equations:
* dynamic* == dynamic
*
* @description Checks that dynamic* == dynamic
*
* @author sgrekhov@unipro.ru
*/
// Requirements=nnbd-weak
import 'opted_out_lib.dart';
class C extends LD implements LA<dynamic> {}
main() {
new C();
}