2018-09-04 05:05:53 -05:00
|
|
|
//@ run-pass
|
2017-11-16 04:56:06 -06:00
|
|
|
|
|
|
|
// Test file taken from issue 45129 (https://github.com/rust-lang/rust/issues/45129)
|
|
|
|
|
2023-12-22 06:12:01 -06:00
|
|
|
struct Foo {
|
|
|
|
x: [usize; 2],
|
|
|
|
}
|
2017-11-16 04:56:06 -06:00
|
|
|
|
|
|
|
static mut SFOO: Foo = Foo { x: [23, 32] };
|
|
|
|
|
|
|
|
impl Foo {
|
2023-12-22 06:12:01 -06:00
|
|
|
fn x(&mut self) -> &mut usize {
|
|
|
|
&mut self.x[0]
|
|
|
|
}
|
2017-11-16 04:56:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
let sfoo: *mut Foo = &mut SFOO;
|
2024-02-17 13:01:56 -06:00
|
|
|
//~^ WARN mutable reference to mutable static is discouraged [static_mut_refs]
|
2017-11-16 04:56:06 -06:00
|
|
|
let x = (*sfoo).x();
|
|
|
|
(*sfoo).x[1] += 1;
|
|
|
|
*x += 1;
|
|
|
|
}
|
|
|
|
}
|