]> git.lizzy.rs Git - rust.git/blob - tests/pretty/struct-tuple.rs
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[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 }