You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
```
error: variables can be used directly in the `format!` string
--> examples/functional/src/main.rs:45:5
|
45 | println!("Values={:?}", values);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-D clippy::uninlined-format-args` implied by `-D warnings`
help: change this to
|
45 - println!("Values={:?}", values);
45 + println!("Values={values:?}");
|
```
0 commit comments