-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
Not sure how this happens yet but binary and octal numbers suffixed with digits outside their range are not marked as invalid.
// `constant.numeric.binary`, `constant.numeric.decimal`
let bin = 0b0123;
// `constant.numeric.octal`, `constant.numeric.decimal`
let oct = 0o09;Reactions are currently unavailable