mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
11 lines
388 B
Rust
11 lines
388 B
Rust
#![l=|x|[b;x ]] //~ ERROR unexpected expression: `|x| [b; x]`
|
|
//~^ ERROR cannot find attribute `l` in this scope
|
|
|
|
// notice the space at the start,
|
|
// we can't attach any attributes to this file because it needs to be at the start
|
|
|
|
// this example has been slightly modified (adding ]] at the end), so that it actually works here
|
|
// it still produces the same issue though
|
|
|
|
fn main() {}
|