about summary refs log tree commit diff
path: root/tests/ui/rust-2018/suggestions-not-always-applicable.fixed
blob: 3a42434494d84bc5c26e50729a25276eaccc2bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//@ proc-macro: suggestions-not-always-applicable.rs
//@ edition:2015
//@ run-rustfix
//@ rustfix-only-machine-applicable
//@ check-pass
//@ ignore-backends: gcc

#![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();
}