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.