blob: 2007cf4116c615903184358717f12c6d1efe8707 [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.
main() {
var L = 33;
while (false) {
// Illegal: L is not a label.
if (true) break L; //# 01: compile-time error
}
}