blob: 882450425c36331be11b7ee7c4fc6dd9bda5c0f3 [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(FutureOr<T>) =
* let S be NORM(T)
* if S is a top type then S
* if S is Object then S
* if S is Object* then S
* if S is Never then Future<Never>
* if S is Null then Future<Null>?
* else FutureOr<S>
*
* @description Checks that if NORM(T) is Never then
* NORM(FutureOr<T>) = Future<Never>
*
* @author sgrekhov@unipro.ru
* @issue 41632
*/
// Requirements=nnbd-strong
import 'dart:async';
class A<X> {}
class B<X> implements A<X> {}
class C extends B<FutureOr<Never>> implements A<Future<Never>> {}
main() {
new C();
}