mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
22 lines
595 B
Rust
22 lines
595 B
Rust
#![feature(rustc_attrs)]
|
|
#![allow(private_interfaces)]
|
|
|
|
struct SemiPriv;
|
|
|
|
mod m {
|
|
#[rustc_effective_visibility]
|
|
struct Priv;
|
|
//~^ ERROR not in the table
|
|
//~| ERROR not in the table
|
|
|
|
#[rustc_effective_visibility]
|
|
pub fn foo() {} //~ ERROR Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
|
|
|
|
#[rustc_effective_visibility]
|
|
impl crate::SemiPriv { //~ ERROR Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
|
|
pub fn f(_: Priv) {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|