about summary refs log tree commit diff
path: root/tests/ui/tool-attributes/multiple-registered.rs
blob: 4d54c2dcb0820751c783f4a3c0f15e725218efbe (plain)
1
2
3
4
5
6
7
//@ check-pass

#![feature(register_tool)]
#![register_tool(foo, bar, baz)]

#[allow(foo::a, bar::b, baz::c)]
fn main() {}