mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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 });
|
|
}
|