about summary refs log tree commit diff
path: root/tests/ui/modules/issue-1920-1.rs
blob: 763d07db2cde4e573f4b74d9964c6bc193a602c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Test that absolute path names are correct when a crate is not linked into the root namespace

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

mod foo {
    pub 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
}