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 Normal View History

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