mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
346 B
Rust
13 lines
346 B
Rust
//@ run-pass
|
|
#![allow(unused_variables)]
|
|
//@ compile-flags: --extern LooksLikeExternCrate=/path/to/nowhere
|
|
|
|
mod m {
|
|
pub struct LooksLikeExternCrate;
|
|
}
|
|
|
|
fn main() {
|
|
// OK, speculative resolution for `unused_qualifications` doesn't try
|
|
// to resolve this as an extern crate and load that crate
|
|
let s = m::LooksLikeExternCrate {};
|
|
}
|