mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 12:08:13 +00:00
13 lines
221 B
Rust
13 lines
221 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();
|
|
}
|