rust/tests/ui/modules/issue-1920-3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
340 B
Rust
Raw Normal View History

//! Test that when a crate is linked multiple times that the shortest absolute path name is used
2018-11-05 04:00:03 +00:00
//@ 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
}