01c09391f3
This underlying issue has been fixed. Closes #39666 Change-Id: Ic407107fd99b1fe9f72651c16e3631a769709b6f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/149593 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
11 lines
321 B
Dart
11 lines
321 B
Dart
// 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.
|
|
|
|
import 'dart:async';
|
|
import 'issue39666_lib.dart';
|
|
|
|
class A<X extends FutureOr<List>> {}
|
|
|
|
void main() {}
|