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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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() {}