Files
rust/tests/ui/resolve/path-attr-in-const-block.rs

11 lines
203 B
Rust
Raw Permalink Normal View History

2024-06-20 19:44:36 +08:00
// issue#126516
// issue#126647
fn main() {
const {
#![path = foo!()]
//~^ ERROR: cannot find macro `foo` in this scope
//~| ERROR: attribute value must be a literal
2024-06-20 19:44:36 +08:00
}
}