]>
Commit | Line | Data |
---|---|---|
7453a54e | 1 | // Copyright 2016 The Rust Project Developers. See the COPYRIGHT |
223e47cc LB |
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 | ||
7453a54e SL |
11 | // testing whether the lookup mechanism picks up types |
12 | // defined in the outside crate | |
1a4d82fc | 13 | |
7453a54e | 14 | // aux-build:issue-21221-4.rs |
223e47cc | 15 | |
7453a54e | 16 | extern crate issue_21221_4; |
1a4d82fc | 17 | |
7453a54e | 18 | struct Foo; |
1a4d82fc | 19 | |
7453a54e SL |
20 | impl T for Foo {} |
21 | //~^ ERROR trait `T` is not in scope | |
54a0048b SL |
22 | //~| HELP you can import it into scope: `use issue_21221_4::T;`. |
23 | //~| HELP run `rustc --explain E0405` to see a detailed explanation | |
223e47cc LB |
24 | |
25 | fn main() { | |
7453a54e | 26 | println!("Hello, world!"); |
223e47cc | 27 | } |