]> git.lizzy.rs Git - rust.git/blob - tests/pretty/struct-tuple.rs
Rollup merge of #107576 - P1n3appl3:master, r=tmandry
[rust.git] / tests / pretty / struct-tuple.rs
1 // pp-exact
2 struct Foo;
3 struct Bar(isize, isize);
4
5 fn main() {
6     struct Foo2;
7     struct Bar2(isize, isize, isize);
8     let _a = Bar(5, 5);
9     let _b = Foo;
10 }