27bb27f71c
This commit improves the diagnostic emitted when a tuple struct is being constructed which has private fields so that private fields are labelled and the message is improved. Signed-off-by: David Wood <david@davidtw.co>
19 lines
462 B
Rust
19 lines
462 B
Rust
// Test for for diagnostic improvement issue #75907
|
|
|
|
mod foo {
|
|
pub(crate) struct Foo(u8);
|
|
pub(crate) struct Bar(pub u8, 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
|
|
}
|