about summary refs log tree commit diff
path: root/tests/pretty/struct-pattern.rs
blob: 31de95e74a37ce2ffd20a8c34d25bb3f6d8aba2f (plain)
1
2
3
4
5
//@ pp-exact
//@ pretty-compare-only
// Testing that shorthand struct patterns are preserved

fn main() { let Foo { a, ref b, mut c, x: y, z: z } = foo; }