rust/tests/ui/privacy/issue-75907.rs

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

19 lines
477 B
Rust
Raw Normal View History

2022-10-12 16:12:19 +00:00
// Test for diagnostic improvement issue #75907
mod foo {
pub(crate) struct Foo(u8);
pub(crate) struct Bar(pub u8, pub(in crate::foo) u8, Foo);
pub(crate) fn make_bar() -> Bar {
Bar(1, 12, Foo(10))
}
}
use foo::{make_bar, Bar, Foo};
fn main() {
let Bar(x, y, Foo(z)) = make_bar();
//~^ ERROR cannot match against a tuple struct which contains private fields
//~| ERROR cannot match against a tuple struct which contains private fields
}