summary refs log tree commit diff
path: root/src/test/ui/issues/issue-1920-2.rs
blob: 56d842ec4a07dbd422545f3d31b99d414c1c3f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! Test that when a crate is linked under another name that name is used in global paths

// aux-build:issue-1920.rs

extern crate issue_1920 as bar;

fn assert_clone<T>() where T : Clone { }

fn main() {
    assert_clone::<bar::S>();
    //~^ ERROR `bar::S: std::clone::Clone` is not satisfied
}