2021-03-01 17:13:06 +01:00
|
|
|
#![crate_type = "lib"]
|
2021-03-02 09:42:32 -05:00
|
|
|
#![deny(unused_attributes)]
|
|
|
|
//~^ NOTE lint level is defined here
|
|
|
|
#![doc(as_ptr)]
|
|
|
|
//~^ ERROR unknown `doc` attribute
|
|
|
|
//~| WARNING will become a hard error in a future release
|
2021-03-01 17:13:06 +01:00
|
|
|
|
2021-03-02 09:42:32 -05:00
|
|
|
#[doc(as_ptr)]
|
|
|
|
//~^ ERROR unknown `doc` attribute
|
|
|
|
//~| WARNING will become a hard error in a future release
|
2021-03-01 17:13:06 +01:00
|
|
|
pub fn foo() {}
|