blob: 350d26296cdb0e45a9127b935e4a5e6886a05f39 [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.
/// @assertion The scope of a label that labels a statement s is s. The scope of
/// a label that labels a case clause of a switch statement s is s.
/// @description Checks that a label can't be referenced outside of its statement.
/// @author rodionov
main() {
L: for (int i in [1, 2]) {
break M:
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
M: do {
continue L;
// ^
// [analyzer] unspecified
// [cfe] unspecified
} while (false);
}