rust/tests/ui/tool-attributes/invalid-tool.rs
2024-07-10 18:56:06 -04:00

7 lines
115 B
Rust

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