blob: 9774342e09969059f813218fb3312e697d2e0fa0 [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
* NORM(T?) =
* let S be NORM(T)
* if S is a top type then S
* if S is Never then Null
* if S is Never* then Null
* if S is Null then Null
* if S is FutureOr<R> and R is nullable then S
* if S is FutureOr<R>* and R is nullable then FutureOr<R>
* if S is R? then R?
* if S is R* then R?
* else S?
*
* @description Checks that if NORM(T) is R* then NORM(T?) = R?
*
* @author sgrekhov@unipro.ru
*/
// Requirements=nnbd-weak
import 'opted_in_lib.dart';
import 'opted_out_lib.dart';
class C extends LE<String> implements A<String?> {}
main() {
new C();
}