mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-16 14:08:37 +00:00
6 lines
170 B
Rust
6 lines
170 B
Rust
#![warn(clippy::unreadable_literal)]
|
|
//@no-rustfix
|
|
fn f2() -> impl Sized { && 3.14159265358979323846E }
|
|
//~^ ERROR: expected at least one digit in exponent
|
|
|
|
fn main() {}
|