794c89415b
Includes a fix to avoid check exhaustiveness on switch expression with invalid scrutinee type. Closes #51313 Closes #51314 Closes #51410 Closes #51437 Closes #51480 Closes #51636 Change-Id: I323ee027a507232fec36f53fd04417988ea39755 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/292882 Reviewed-by: Chloe Stefantsova <cstefantsova@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
11 lines
329 B
Dart
11 lines
329 B
Dart
// Copyright (c) 2023, 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.
|
|
|
|
int f<A>() => switch (unknownName) {
|
|
<A>[] => 1,
|
|
<A>[var x, ...var xs] => 2,
|
|
};
|
|
|
|
void main() {}
|