]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/imports/rfc-1560-warning-cycle.rs
eb36129799a4e21e833b7927f1af65df1f956c13
[rust.git] / src / test / compile-fail / imports / rfc-1560-warning-cycle.rs
1 // Copyright 2016 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 #![feature(rustc_attrs)]
12 #![allow(unused)]
13
14 pub struct Foo;
15
16 mod bar {
17     struct Foo;
18
19     mod baz {
20         use *; //~ NOTE `Foo` could refer to the name imported here
21         use bar::*; //~ NOTE `Foo` could also refer to the name imported here
22         fn f(_: Foo) {}
23         //~^ WARN `Foo` is ambiguous
24         //~| WARN hard error in a future release
25         //~| NOTE see issue #38260
26     }
27 }
28
29 #[rustc_error]
30 fn main() {} //~ ERROR compilation successful