mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
125 B
Rust
10 lines
125 B
Rust
|
//@ known-bug: rust-lang/rust#126969
|
||
|
|
||
|
struct S<T> {
|
||
|
_: union { t: T },
|
||
|
}
|
||
|
|
||
|
fn f(S::<&i8> { .. }: S<&i8>) {}
|
||
|
|
||
|
fn main() {}
|