2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2013-02-19 13:29:50 -06:00
|
|
|
// regression test for issue 4875
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-02-19 13:29:50 -06:00
|
|
|
pub struct Foo<T> {
|
|
|
|
data: T,
|
|
|
|
}
|
|
|
|
|
2013-11-28 14:22:53 -06:00
|
|
|
fn foo<T>(Foo{..}: Foo<T>) {
|
2013-02-19 13:29:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
}
|