mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
11 lines
176 B
Rust
11 lines
176 B
Rust
// run-pass
|
|
|
|
#![deny(dead_code)]
|
|
|
|
fn main() {
|
|
struct Foo<T> { x: T }
|
|
type Bar = Foo<u32>;
|
|
let spam = |Bar { x }| x != 0;
|
|
println!("{}", spam(Foo { x: 10 }));
|
|
}
|