]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/issue-3592.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / rustfmt / tests / target / issue-3592.rs
CommitLineData
f20569fa
XL
1fn r() -> (Biz, ()) {
2 (
3 Biz {
4 #![cfg(unix)]
5 field: 9
6 },
7 Biz {
8 #![cfg(not(unix))]
9 field: 200
10 },
11 (),
12 )
13}