summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-42599_available_fields_note.rs
blob: c377dfc126ac975c394a5235f147e1efa05ce8b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
mod submodule {

    #[derive(Default)]
    pub struct Demo {
        pub favorite_integer: isize,
        secret_integer: isize,
        pub innocently_misspellable: (),
        another_field: bool,
        yet_another_field: bool,
        always_more_fields: bool,
        and_ever: bool,
    }

    impl Demo {
        fn new_with_secret_two() -> Self {
            Self { secret_integer: 2, inocently_mispellable: () }
            //~^ ERROR no field
        }

        fn new_with_secret_three() -> Self {
            Self { secret_integer: 3, egregiously_nonexistent_field: () }
            //~^ ERROR no field
        }
    }

}

fn main() {
    use submodule::Demo;

    let demo = Demo::default();
    let innocent_field_misaccess = demo.inocently_mispellable;
    //~^ ERROR no field
    // note shouldn't suggest private fields
    let egregious_field_misaccess = demo.egregiously_nonexistent_field;
    //~^ ERROR no field
}