``` rust fn main() { let () = 1i; } ``` gives ``` <anon>:2:9: 2:11 error: mismatched types: expected `int`, found `()` (expected int, found ()) <anon>:2 let () = 1i; ^~ ``` Obviously, `()` isn't a valid name for a binding, but this message isn't very helpful.