mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +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 });
|
||
|
}
|