rust/tests/ui/lint/known-tool-in-submodule/root.rs

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

11 lines
119 B
Rust
Raw Normal View History

// check-pass
#![feature(register_tool)]
#![register_tool(tool)]
mod submodule;
fn main() {
submodule::foo();
}