c6bd2afc10
Closes #44857. Bug: https://github.com/dart-lang/sdk/issues/44857 Change-Id: I1082fded9a0b06cbcf30c484975b0cf464db75a4 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/182781 Reviewed-by: Johnni Winther <johnniwinther@google.com> Commit-Queue: Dmitry Stefantsov <dmitryas@google.com>
12 lines
371 B
Dart
12 lines
371 B
Dart
// Copyright (c) 2021, 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.
|
|
|
|
typedef F = Never Function(void Function<T extends Never>(T));
|
|
|
|
void main() {
|
|
const c = F;
|
|
print("Are $c, $F identical?");
|
|
print(identical(c, F));
|
|
}
|