mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
8 lines
282 B
Rust
8 lines
282 B
Rust
#![warn(clippy::unreadable_literal)]
|
|
//@no-rustfix
|
|
fn f2() -> impl Sized { && 3.14159265358979323846E }
|
|
//~^ ERROR: expected at least one digit in exponent
|
|
//~| ERROR: long literal lacking separators
|
|
//~| NOTE: `-D clippy::unreadable-literal` implied by `-D warnings`
|
|
|
|
fn main() {}
|