]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/resolve_self_super_hint.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / compile-fail / resolve_self_super_hint.rs
1 // Copyright 2014 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 mod a {
12 extern crate collections;
13 use collections::HashMap;
14 //~^ ERROR unresolved import `collections::HashMap` [E0432]
15 //~| Did you mean `self::collections`?
16 mod b {
17 use collections::HashMap;
18 //~^ ERROR unresolved import `collections::HashMap` [E0432]
19 //~| Did you mean `a::collections`?
20 mod c {
21 use collections::HashMap;
22 //~^ ERROR unresolved import `collections::HashMap` [E0432]
23 //~| Did you mean `a::collections`?
24 mod d {
25 use collections::HashMap;
26 //~^ ERROR unresolved import `collections::HashMap` [E0432]
27 //~| Did you mean `a::collections`?
28 }
29 }
30 }
31 }