]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/rust-2018/suggestions-not-always-applicable.rs
Rollup merge of #53407 - pnkfelix:partial-53351-make-more-ported-compile-fail-tests...
[rust.git] / src / test / ui-fulldeps / rust-2018 / suggestions-not-always-applicable.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:suggestions-not-always-applicable.rs
12 // compile-flags: --edition 2015
13 // run-rustfix
14 // rustfix-only-machine-applicable
15 // compile-pass
16
17 #![feature(rust_2018_preview)]
18 #![warn(rust_2018_compatibility)]
19
20 extern crate suggestions_not_always_applicable as foo;
21
22 pub struct Foo;
23
24 mod test {
25     use crate::foo::foo;
26
27     #[foo] //~ WARN: absolute paths must start with
28     //~| WARN: previously accepted
29     //~| WARN: absolute paths
30     //~| WARN: previously accepted
31     fn main() {
32     }
33 }
34
35 fn main() {
36     test::foo();
37 }