rustc/tests/ui/tool-attributes/invalid-tool.rs
2024-10-21 11:08:01 +02:00

7 lines
115 B
Rust

#![feature(register_tool)]
#![register_tool(1)]
//~^ ERROR `register_tool` only accepts identifiers
fn main() {}