Files
rust/tests/ui/privacy/pub-priv-dep/auxiliary/bar.rs

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

7 lines
136 B
Rust
Raw Normal View History

//@ aux-crate:priv:foo=foo.rs
//@ compile-flags: -Zunstable-options
#![crate_type = "rlib"]
extern crate foo;
pub struct Bar(pub i32);