mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
34 lines
568 B
Rust
34 lines
568 B
Rust
struct S<X, Y> {
|
|
x: X,
|
|
y: Y,
|
|
}
|
|
|
|
fn main() {
|
|
let x: &&Box<i32>;
|
|
let _y = &**x; //~ ERROR [E0381]
|
|
|
|
let x: &&S<i32, i32>;
|
|
let _y = &**x; //~ ERROR [E0381]
|
|
|
|
let x: &&i32;
|
|
let _y = &**x; //~ ERROR [E0381]
|
|
|
|
|
|
let mut a: S<i32, i32>;
|
|
a.x = 0; //~ ERROR [E0381]
|
|
let _b = &a.x;
|
|
|
|
let mut a: S<&&i32, &&i32>;
|
|
a.x = &&0; //~ ERROR [E0381]
|
|
let _b = &**a.x;
|
|
|
|
|
|
let mut a: S<i32, i32>;
|
|
a.x = 0; //~ ERROR [E0381]
|
|
let _b = &a.y;
|
|
|
|
let mut a: S<&&i32, &&i32>;
|
|
a.x = &&0; //~ ERROR [E0381]
|
|
let _b = &**a.y;
|
|
}
|