rust-clippy/tests/ui/duration_subsec.stderr

35 lines
1.4 KiB
Text
Raw Normal View History

error: calling `subsec_millis()` is more concise than this calculation
--> $DIR/duration_subsec.rs:10:24
|
2018-12-27 15:57:55 +00:00
LL | let bad_millis_1 = dur.subsec_micros() / 1_000;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `dur.subsec_millis()`
|
= note: `-D clippy::duration-subsec` implied by `-D warnings`
2018-03-18 20:27:15 +00:00
error: calling `subsec_millis()` is more concise than this calculation
--> $DIR/duration_subsec.rs:11:24
|
2018-12-27 15:57:55 +00:00
LL | let bad_millis_2 = dur.subsec_nanos() / 1_000_000;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `dur.subsec_millis()`
error: calling `subsec_micros()` is more concise than this calculation
--> $DIR/duration_subsec.rs:16:22
2018-03-18 20:27:15 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let bad_micros = dur.subsec_nanos() / 1_000;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `dur.subsec_micros()`
2018-03-18 20:27:15 +00:00
error: calling `subsec_micros()` is more concise than this calculation
--> $DIR/duration_subsec.rs:21:13
2018-03-18 20:27:15 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let _ = (&dur).subsec_nanos() / 1_000;
2018-03-18 20:27:15 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(&dur).subsec_micros()`
error: calling `subsec_micros()` is more concise than this calculation
--> $DIR/duration_subsec.rs:25:13
2018-03-18 20:27:15 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let _ = dur.subsec_nanos() / NANOS_IN_MICRO;
2018-03-18 20:27:15 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `dur.subsec_micros()`
error: aborting due to 5 previous errors
2018-03-18 20:27:15 +00:00