mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
14 lines
275 B
Rust
14 lines
275 B
Rust
//@ aux-build:unstable_impl_codegen_aux2.rs
|
|
//@ run-pass
|
|
|
|
/// Downstream crate for unstable impl codegen test
|
|
/// that depends on upstream crate in
|
|
/// unstable_impl_codegen_aux2.rs
|
|
|
|
extern crate unstable_impl_codegen_aux2 as aux;
|
|
use aux::foo;
|
|
|
|
fn main() {
|
|
foo(1_u8);
|
|
}
|