Files
rust/tests/ui/unstable-feature-bound/auxiliary/unstable_impl_codegen_aux2.rs

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

14 lines
285 B
Rust
Raw Normal View History

2025-07-14 13:38:36 +00:00
//@ aux-build:unstable_impl_codegen_aux1.rs
#![feature(foo)]
extern crate unstable_impl_codegen_aux1 as aux;
use aux::Trait;
/// Upstream crate for unstable impl codegen test
/// that depends on aux crate in
/// unstable_impl_codegen_aux1.rs
pub fn foo<T>(a: T) {
a.method();
}