mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
281 B
Rust
13 lines
281 B
Rust
//! 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 `S: Clone` is not satisfied
|
|
}
|