]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/edition-lint-fully-qualified-paths.fixed
279d4e9a806221741f67632fa268898de984e8d2
[rust.git] / src / test / ui / rust-2018 / edition-lint-fully-qualified-paths.fixed
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 // run-rustfix
12
13 #![feature(rust_2018_preview)]
14 #![deny(absolute_paths_not_starting_with_crate)]
15
16 mod foo {
17     crate trait Foo {
18         type Bar;
19     }
20
21     crate struct Baz { }
22
23     impl Foo for Baz {
24         type Bar = ();
25     }
26 }
27
28
29 fn main() {
30     let _: <foo::Baz as crate::foo::Foo>::Bar = ();
31     //~^ ERROR absolute paths must start with
32     //~| this was previously accepted
33
34     let _: <crate::foo::Baz as foo::Foo>::Bar = ();
35     //~^ ERROR absolute paths must start with
36     //~| this was previously accepted
37 }