about summary refs log tree commit diff
path: root/tests/ui/cross-crate/tuple-struct-cross-crate-7899.rs
blob: ce3ea7dd5796a7efd82463f4974bdf5b40bdcefb (plain)
1
2
3
4
5
6
7
8
9
10
// 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);
}