87f74cbba9
Closes #42203 Closes #42362 Closes #42352 Change-Id: Ida8a41252ec524ba5c2eaa697fa61e3514897bef Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151500 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
11 lines
332 B
Dart
11 lines
332 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';
|
|
|
|
void h1<T extends FutureOr<T?>?>(T? t) {}
|
|
void h2<S extends FutureOr<S?>>(S? s) {}
|
|
|
|
main() {}
|