]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
1a4d82fc
JJ
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
11mod a {
12 extern crate collections;
13 use collections::HashMap;
9e0c209e
SL
14 //~^ ERROR unresolved import `collections::HashMap` [E0432]
15 //~| Did you mean `self::collections`?
1a4d82fc
JJ
16 mod b {
17 use collections::HashMap;
9e0c209e
SL
18 //~^ ERROR unresolved import `collections::HashMap` [E0432]
19 //~| Did you mean `a::collections`?
1a4d82fc
JJ
20 mod c {
21 use collections::HashMap;
9e0c209e
SL
22 //~^ ERROR unresolved import `collections::HashMap` [E0432]
23 //~| Did you mean `a::collections`?
1a4d82fc
JJ
24 mod d {
25 use collections::HashMap;
9e0c209e
SL
26 //~^ ERROR unresolved import `collections::HashMap` [E0432]
27 //~| Did you mean `a::collections`?
1a4d82fc
JJ
28 }
29 }
30 }
31}