22a5125a36
Most tests involving save-analysis were removed, but I kept a few where the `-Zsave-analysis` was an add-on to the main thing being tested, rather than the main thing being tested. For `x.py install`, the `rust-analysis` target has been removed. For `x.py dist`, the `rust-analysis` target has been kept in a degenerate form: it just produces a single file `reduced.json` indicating that save-analysis has been removed. This is necessary for rustup to keep working. Closes #43606.
29 lines
817 B
Rust
29 lines
817 B
Rust
// Regression test for #3763
|
|
|
|
mod my_mod {
|
|
pub struct MyStruct {
|
|
priv_field: isize
|
|
}
|
|
pub fn MyStruct () -> MyStruct {
|
|
MyStruct {priv_field: 4}
|
|
}
|
|
impl MyStruct {
|
|
fn happyfun(&self) {}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let my_struct = my_mod::MyStruct();
|
|
let _woohoo = (&my_struct).priv_field;
|
|
//~^ ERROR field `priv_field` of struct `MyStruct` is private
|
|
|
|
let _woohoo = (Box::new(my_struct)).priv_field;
|
|
//~^ ERROR field `priv_field` of struct `MyStruct` is private
|
|
|
|
(&my_struct).happyfun(); //~ ERROR associated function `happyfun` is private
|
|
|
|
(Box::new(my_struct)).happyfun(); //~ ERROR associated function `happyfun` is private
|
|
let nope = my_struct.priv_field;
|
|
//~^ ERROR field `priv_field` of struct `MyStruct` is private
|
|
}
|