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>
20 lines
401 B
Dart
20 lines
401 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.
|
|
|
|
class A<X> {
|
|
final X x;
|
|
A(this.x);
|
|
}
|
|
|
|
extension<X> on A<X> {
|
|
X get g => x;
|
|
}
|
|
|
|
void foo<X>(A<X> it) {
|
|
switch (it) {
|
|
case A<X>(g: var x):
|
|
x.arglebargle; // Error
|
|
}
|
|
}
|