]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch05-using-structs-to-structure-related-data/no-listing-04-unit-like-structs/src/main.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / doc / book / listings / ch05-using-structs-to-structure-related-data / no-listing-04-unit-like-structs / src / main.rs
1 fn main() {
2 // ANCHOR: here
3 struct AlwaysEqual;
4
5 let subject = AlwaysEqual;
6 // ANCHOR_END: here
7 }