mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
200 B
Rust
13 lines
200 B
Rust
// run-pass
|
|
trait Tr { type T; }
|
|
impl Tr for u8 { type T=(); }
|
|
struct S<I: Tr>(#[allow(unused_tuple_struct_fields)] I::T);
|
|
|
|
fn foo<I: Tr>(i: I::T) {
|
|
S::<I>(i);
|
|
}
|
|
|
|
fn main() {
|
|
foo::<u8>(());
|
|
}
|