Sign in
rust
/
rust
/
4deff630049a22b79ad9bc624ff9408564cc1a4b
/
.
/
tests
/
ui
/
tool-attributes
/
multiple-registered.rs
blob: 4d54c2dcb0820751c783f4a3c0f15e725218efbe [
file
]
//@ check-pass
#![
feature
(
register_tool
)]
#![
register_tool
(
foo
,
bar
,
baz
)]
#[
allow
(
foo
::
a
,
bar
::
b
,
baz
::
c
)]
fn
main
()
{}