blob: f7962603d71e01db49fa2be334c52c7e9d1c513a [file] [log] [blame]
// Copyright (c) 2024, 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.
// Wildcard variables are enabled by default.
main() {
int _ = 1;
_ = 2;
//^
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_IDENTIFIER
// [cfe] Setter not found: '_'.
}