@[email protected] to [email protected]English • edit-27 months agoWhat are some mind blowing Rust tricks?message-square52fedilinkarrow-up168
arrow-up168message-squareWhat are some mind blowing Rust tricks?@[email protected] to [email protected]English • edit-27 months agomessage-square52fedilink
If we were to create a Rust version of this page for Haskell, what cool programming techniques would you add to it?
minus-square@[email protected]linkfedilink23•7 months agoIt’s a test for the compiler which ensures that these legal yet extremely weird expressions continue to compile as the compiler is updated. So there is a purpose to the madness but it does still look pretty funny.
minus-square@[email protected]linkfedilinkEnglish9•6 months agoThat’s make sense. We used to write some ridiculous tests too, but users still managed to find a way fn union() { union union<'union> { union: &'union union<'union>, } } Is my favorite.
What madness caused this
It’s a test for the compiler which ensures that these legal yet extremely weird expressions continue to compile as the compiler is updated. So there is a purpose to the madness but it does still look pretty funny.
That’s make sense. We used to write some ridiculous tests too, but users still managed to find a way
Is my favorite.