mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
211 B
Rust
13 lines
211 B
Rust
//@ run-pass
|
|
#![allow(unused_variables)]
|
|
//@ aux-build:issue-25467.rs
|
|
|
|
pub type Issue25467BarT = ();
|
|
pub type Issue25467FooT = ();
|
|
|
|
extern crate issue_25467 as aux;
|
|
|
|
fn main() {
|
|
let o: aux::Object = None;
|
|
}
|