]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/struct-tuple.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / 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 }