
Issue tests numbered 1920, 3668, 5997, 23302, 32122, 40510, 57741, 71676, and 76077 were moved to relevant better-named subdirectories. ISSUES_ENTRY_LIMIT was adjusted to match new number of files and FIXME note was expanded.
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
|
|
}
|