os-rust/tests/ui/lint/lint-forbid-attr.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
143 B
Rust
Raw Normal View History

2015-01-16 10:25:13 -08:00
#![forbid(deprecated)]
2014-06-18 13:46:48 -07:00
#[allow(deprecated)]
//~^ ERROR allow(deprecated) incompatible
//~| ERROR allow(deprecated) incompatible
2014-06-18 13:46:48 -07:00
fn main() {
}