compiler/rustc_error_codes/src/error_codes/E0768.md MARKDOWN 14 lines View on github.com → Search inside
1A number in a non-decimal base has no digits.23Erroneous code example:45```compile_fail,E07686let s: i32 = 0b; // error!7```89To fix this error, add the missing digits:1011```12let s: i32 = 0b1; // ok!13```

Findings

✓ No findings reported for this file.

Get this view in your editor

Same data, no extra tab — call code_get_file + code_get_findings over MCP from Claude/Cursor/Copilot.