mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
209 B
Rust
13 lines
209 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;
|
|
}
|