mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
13 lines
223 B
Rust
13 lines
223 B
Rust
//@ aux-build:foreign-priv-aux.rs
|
|
//@ build-pass
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
extern crate foreign_priv_aux;
|
|
|
|
use foreign_priv_aux::{ImplPrivTrait, PubTrait, Wrapper};
|
|
|
|
pub fn foo(x: Wrapper<ImplPrivTrait>) {
|
|
x.pub_fn();
|
|
}
|