mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +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 });
|
||
|
}
|