about summary refs log tree commit diff
path: root/tests/ui/modules/issue-1920-3.rs
blob: 372c8b1511c408aace04e32efa543e0c081330e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Test that when a crate is linked multiple times that the shortest absolute path name is used

//@ aux-build:issue-1920.rs

mod foo {
    pub extern crate issue_1920;
}

extern crate issue_1920;

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

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