]> git.proxmox.com Git - rustc.git/blame_incremental - src/test/ui/issues/issue-1920-3.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-1920-3.rs
... / ...
CommitLineData
1//! Test that when a crate is linked multiple times that the shortest absolute path name is used
2
3// aux-build:issue-1920.rs
4
5mod foo {
6 pub extern crate issue_1920;
7}
8
9extern crate issue_1920;
10
11fn assert_clone<T>() where T : Clone { }
12
13fn main() {
14 assert_clone::<foo::issue_1920::S>();
15 //~^ ERROR `S: Clone` is not satisfied
16}