about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-10912.rs
blob: 1d689e1d0082d282ed145d2f6990ff7abc60cd9d (plain)
1
2
3
4
5
6
#![warn(clippy::unreadable_literal)]
//@no-rustfix
fn f2() -> impl Sized { && 3.14159265358979323846E }
//~^ ERROR: expected at least one digit in exponent

fn main() {}