mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
150 B
Rust
10 lines
150 B
Rust
macro_rules! foo {
|
|
() => { break 'x; } //~ ERROR use of undeclared label `'x`
|
|
}
|
|
|
|
pub fn main() {
|
|
'x: for _ in 0..1 {
|
|
foo!();
|
|
};
|
|
}
|