about summary refs log tree commit diff
path: root/tests/ui/tool-attributes/invalid-tool.rs
blob: 125333231d217290e8f6b48313f50085377118af (plain)
1
2
3
4
5
6
#![feature(register_tool)]

#![register_tool(1)]
//~^ ERROR `register_tool` only accepts identifiers

fn main() {}