Files
rust/tests/ui/unstable-feature-bound/unstable_impl_codegen.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
275 B
Rust
Raw Normal View History

2025-07-14 13:38:36 +00:00
//@ 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);
}