Hacker News new | ask | show | jobs
by packetlost 8 days ago
Rust has the todo!() macro but no todo type. I use todo! constantly and would probably make heavy use of a todo type as well...
1 comments

Todo type in rust will be a never type. Eg thing which exit or panic returns
Oh I hadn't thought about that!