mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 09:31:39 +00:00
12 lines
117 B
Rust
12 lines
117 B
Rust
//@ check-pass
|
|
|
|
struct S<T> {
|
|
_t: T,
|
|
}
|
|
|
|
fn f(S::<&i8> { .. }: S<&i8>) {}
|
|
|
|
fn main() {
|
|
f(S { _t: &42_i8 });
|
|
}
|