mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
313 B
Rust
14 lines
313 B
Rust
//! 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
|
|
}
|