### What it does Warns if literal suffixes are not separated by an underscore. To enforce unseparated literal suffix style, see the `separated_literal_suffix` lint. ### Why is this bad? Suffix style should be consistent. ### Example ``` 123832i32 ``` Use instead: ``` 123832_i32 ```