about summary refs log tree commit diff
path: root/tests/ui/unstable-feature-bound/unstable_impl_codegen.rs
blob: 285a64d2250af9bcf3bf5f6202305e5d08b9a00f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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);
}