mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
369 B
Rust
24 lines
369 B
Rust
// aux-build:suggestions-not-always-applicable.rs
|
|
// edition:2015
|
|
// run-rustfix
|
|
// rustfix-only-machine-applicable
|
|
// check-pass
|
|
|
|
#![feature(rust_2018_preview)]
|
|
#![warn(rust_2018_compatibility)]
|
|
|
|
extern crate suggestions_not_always_applicable as foo;
|
|
|
|
pub struct Foo;
|
|
|
|
mod test {
|
|
use crate::foo::foo;
|
|
|
|
#[foo]
|
|
fn main() {}
|
|
}
|
|
|
|
fn main() {
|
|
test::foo();
|
|
}
|