mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
100 B
Rust
10 lines
100 B
Rust
//@ check-pass
|
|
|
|
struct S(i32);
|
|
|
|
const A: () = {
|
|
let mut s = S(0);
|
|
s.0 = 1;
|
|
};
|
|
|
|
fn main() {}
|