blob: 66028a2135dc3e8a2d2e1b3fb09c92a7c85a3ec7 [file] [log] [blame]
// Copyright (c) 2022, 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.
// SharedOptions=--enable-experiment=patterns
main() {
var local = 'local';
// If cases sharing a body don't agree on a variable's finality, it is still
// considered in scope and an error to use.
switch ('value') {
case final int local:
case int local:
print(local);
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
// If cases sharing a body don't agree on a variable's type, it is still
// considered in scope and an error to use.
switch ('value') {
case bool local:
case int local:
print(local);
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
}