os-rust/tests/ui/rust-2018/suggestions-not-always-applicable.fixed

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

23 lines
343 B
Rust
Raw Normal View History

//@ aux-build:suggestions-not-always-applicable.rs
//@ edition:2015
//@ run-rustfix
//@ rustfix-only-machine-applicable
//@ check-pass
#![warn(rust_2018_compatibility)]
extern crate suggestions_not_always_applicable as foo;
pub struct Foo;
mod test {
use crate::foo::foo;
2021-04-16 11:06:51 +02:00
#[foo]
fn main() {}
}
fn main() {
test::foo();
}