diff options
| author | Daniel Eades <danieleades@hotmail.com> | 2022-12-31 09:26:58 +0000 |
|---|---|---|
| committer | Daniel Eades <danieleades@hotmail.com> | 2022-12-31 09:26:58 +0000 |
| commit | b196e5b2f6b211420bb874d1e4c44e58468ff5ed (patch) | |
| tree | a1be6409afcd7d830c2c171bf69e7ff12bcce668 | |
| parent | ba5067a6f04c0dbd5139cd876758fb2a11fad7cd (diff) | |
| download | rust-b196e5b2f6b211420bb874d1e4c44e58468ff5ed.tar.gz rust-b196e5b2f6b211420bb874d1e4c44e58468ff5ed.zip | |
fixup
| -rw-r--r-- | crates/syntax/src/ast/token_ext.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/syntax/src/ast/token_ext.rs b/crates/syntax/src/ast/token_ext.rs index 4ad7cf33cdc..2cd312e7f4f 100644 --- a/crates/syntax/src/ast/token_ext.rs +++ b/crates/syntax/src/ast/token_ext.rs @@ -481,8 +481,7 @@ bcde", b"abcde", #[test] fn test_value_underscores() { - #[allow(clippy::approx_constant)] - check_float_value("3.141592653589793_f64", 3.141592653589793_f64); + check_float_value("1.234567891011121_f64", 1.234567891011121_f64); check_float_value("1__0.__0__f32", 10.0); check_int_value("0b__1_0_", 2); check_int_value("1_1_1_1_1_1", 111111); |
