11 lines
211 B
Rust
11 lines
211 B
Rust
|
|
// https://github.com/rust-lang/rust/issues/7899
|
||
|
|
//@ run-pass
|
||
|
|
#![allow(unused_variables)]
|
||
|
|
//@ aux-build:aux-7899.rs
|
||
|
|
|
||
|
|
extern crate aux_7899 as testcrate;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
let f = testcrate::V2(1.0f32, 2.0f32);
|
||
|
|
}
|