2019-03-12 00:49:17 +00:00
|
|
|
// aux-build:lint-for-crate.rs
|
2015-03-02 13:21:40 -08:00
|
|
|
// ignore-stage1
|
|
|
|
|
// compile-flags: -D crate-not-okay
|
|
|
|
|
|
2018-07-03 15:36:31 -07:00
|
|
|
#![feature(plugin)] //~ ERROR crate is not marked with #![crate_okay]
|
2015-03-02 13:21:40 -08:00
|
|
|
#![plugin(lint_for_crate)]
|
2019-10-03 09:33:28 +02:00
|
|
|
//~^ WARN use of deprecated attribute `plugin`
|
2015-03-02 13:21:40 -08:00
|
|
|
|
|
|
|
|
pub fn main() { }
|