blob: dc65880e5e224062e1f0e399c6e9804e73f1dc6e [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.
// A local function declaration named `_` is non-binding and cannot be accessed.
void main() {
void _() {}
_();
// [error column 3, length 1]
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_FUNCTION
// [cfe] Method not found: '_'.
}