]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/issue-15778-pass.rs
Merge commit '7c21f91b15b7604f818565646b686d90f99d1baf' into clippyup
[rust.git] / src / test / ui-fulldeps / issue-15778-pass.rs
1 // check-pass
2 // aux-build:lint-for-crate-rpass.rs
3 // ignore-stage1
4 // compile-flags: -D crate-not-okay
5
6 #![feature(plugin, register_attr, custom_inner_attributes)]
7
8 #![register_attr(
9     crate_okay,
10     crate_blue,
11     crate_red,
12     crate_grey,
13     crate_green,
14 )]
15
16 #![plugin(lint_for_crate_rpass)] //~ WARNING compiler plugins are deprecated
17 #![crate_okay]
18 #![crate_blue]
19 #![crate_red]
20 #![crate_grey]
21 #![crate_green]
22
23 fn main() {}