mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
189 B
Rust
16 lines
189 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
// regression test for issue 4875
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
pub struct Foo<T> {
|
|
data: T,
|
|
}
|
|
|
|
fn foo<T>(Foo{..}: Foo<T>) {
|
|
}
|
|
|
|
pub fn main() {
|
|
}
|