Files
sdk/pkg/front_end/testcases/nnbd/issue41952.dart
T
Johnni Winther 4d8d05d1b7 [cfe] Add regression test for issue 41952
Closes #41952

Change-Id: Ic605c505f55725b87964204d450bae863049467e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151397
Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2020-06-18 17:51:07 +00:00

8 lines
291 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.
void Function<S2 extends R?>() i1<R>() => <S2 extends R?>() {};
main() {}