rust/tests/ui/tool-attributes/invalid-tool.rs

7 lines
115 B
Rust
Raw Permalink Normal View History

2024-07-10 22:55:51 +00:00
#![feature(register_tool)]
#![register_tool(1)]
//~^ ERROR `register_tool` only accepts identifiers
fn main() {}