mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
25 lines
461 B
Rust
25 lines
461 B
Rust
#[derive(Default)]
|
|
pub struct A {
|
|
#[doc(hidden)]
|
|
pub hello: i32,
|
|
pub bye: i32,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct B {
|
|
pub hello: i32,
|
|
pub bye: i32,
|
|
}
|
|
|
|
fn main() {
|
|
A::default().hey;
|
|
//~^ ERROR no field `hey` on type `A`
|
|
//~| NOTE unknown field
|
|
//~| NOTE available fields are: `bye`
|
|
|
|
B::default().hey;
|
|
//~^ ERROR no field `hey` on type `B`
|
|
//~| NOTE unknown field
|
|
//~| NOTE available fields are: `hello`, `bye`
|
|
}
|