2020-08-10 06:16:30 -05:00
|
|
|
// check-pass
|
|
|
|
|
|
|
|
struct MyStruct {
|
|
|
|
field: bool,
|
|
|
|
inner_array: [char; 1],
|
2020-09-28 22:51:57 -05:00
|
|
|
raw_ptr: *mut u8
|
2020-08-10 06:16:30 -05:00
|
|
|
}
|
|
|
|
impl MyStruct {
|
|
|
|
fn use_mut(&mut self) {}
|
|
|
|
}
|
|
|
|
|
2020-09-26 20:42:19 -05:00
|
|
|
struct Mutable {
|
|
|
|
msg: &'static str,
|
|
|
|
}
|
|
|
|
impl Drop for Mutable {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
println!("{}", self.msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-26 23:19:46 -05:00
|
|
|
struct Mutable2 { // this one has drop glue but not a Drop impl
|
|
|
|
msg: &'static str,
|
|
|
|
other: String,
|
|
|
|
}
|
|
|
|
|
2020-08-10 06:16:30 -05:00
|
|
|
const ARRAY: [u8; 1] = [25];
|
2020-09-28 22:51:57 -05:00
|
|
|
const MY_STRUCT: MyStruct = MyStruct { field: true, inner_array: ['a'], raw_ptr: 2 as *mut u8 };
|
|
|
|
const RAW_PTR: *mut u8 = 1 as *mut u8;
|
2020-09-26 20:42:19 -05:00
|
|
|
const MUTABLE: Mutable = Mutable { msg: "" };
|
2020-09-26 23:19:46 -05:00
|
|
|
const MUTABLE2: Mutable2 = Mutable2 { msg: "", other: String::new() };
|
2020-08-10 06:16:30 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
ARRAY[0] = 5; //~ WARN attempting to modify
|
|
|
|
MY_STRUCT.field = false; //~ WARN attempting to modify
|
|
|
|
MY_STRUCT.inner_array[0] = 'b'; //~ WARN attempting to modify
|
|
|
|
MY_STRUCT.use_mut(); //~ WARN taking
|
|
|
|
&mut MY_STRUCT; //~ WARN taking
|
|
|
|
(&mut MY_STRUCT).use_mut(); //~ WARN taking
|
2020-09-28 22:51:57 -05:00
|
|
|
|
|
|
|
// Test that we don't warn when writing through
|
|
|
|
// a raw pointer
|
|
|
|
// This is U.B., but this test is check-pass,
|
|
|
|
// so this never actually executes
|
|
|
|
unsafe {
|
|
|
|
*RAW_PTR = 0;
|
|
|
|
*MY_STRUCT.raw_ptr = 0;
|
|
|
|
}
|
2020-09-26 20:42:19 -05:00
|
|
|
|
|
|
|
MUTABLE.msg = "wow"; // no warning, because Drop observes the mutation
|
2020-09-26 23:19:46 -05:00
|
|
|
MUTABLE2.msg = "wow"; //~ WARN attempting to modify
|
2020-08-10 06:16:30 -05:00
|
|
|
}
|