blob: d0d4164fd6181c6fa4829c1831d6f118ca2758ea [file] [log] [blame]
// Copyright (c) 2011, 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.
// @dart = 2.9
/// @assertion It is a compile-time error to preface a function declaration with
/// the built-in identier static.
/// @description Checks that it is a compile-time error to preface local function
/// with 'static'.
/// @author msyabro
/// @reviewer kaigorodov
/// @reviewer iefremov
main() {
try {
static void f() {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
} catch (x) {}
}