mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
313 B
Rust
10 lines
313 B
Rust
#![crate_type = "lib"]
|
|
#![feature(register_tool)]
|
|
#![register_tool(xyz)]
|
|
#![warn(xyz::my_lint)] // this should not error
|
|
#![warn(abc::my_lint)]
|
|
//~^ ERROR unknown tool name `abc` found in scoped lint
|
|
//~| HELP add `#![register_tool(abc)]`
|
|
//~| ERROR unknown tool name `abc`
|
|
//~| HELP add `#![register_tool(abc)]`
|