diff options
| author | bors <bors@rust-lang.org> | 2024-02-27 18:28:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-27 18:28:06 +0000 |
| commit | 1e4f9e302c63ee126a4db8ec2cf3fa396dc74d52 (patch) | |
| tree | a89d7d4d02abf1e0a3bb06fe9ae02b52c96a8499 /src/tools/clippy/tests/ui/rc_buffer_arc.stderr | |
| parent | 8790c3cc7c23057957ba7e9248961b01ea4521a1 (diff) | |
| parent | f99056bd87af9f4489df89da4d9419da14cc54de (diff) | |
Auto merge of #121677 - flip1995:clippy-subtree-update, r=Manishearth
Clippy subtree update r? `@Manishearth`
Diffstat (limited to 'src/tools/clippy/tests/ui/rc_buffer_arc.stderr')
| -rw-r--r-- | src/tools/clippy/tests/ui/rc_buffer_arc.stderr | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/clippy/tests/ui/rc_buffer_arc.stderr b/src/tools/clippy/tests/ui/rc_buffer_arc.stderr index 52522dd725f..5ef5da2f67f 100644 --- a/src/tools/clippy/tests/ui/rc_buffer_arc.stderr +++ b/src/tools/clippy/tests/ui/rc_buffer_arc.stderr @@ -1,5 +1,5 @@ error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:10:11 + --> tests/ui/rc_buffer_arc.rs:10:11 | LL | bad1: Arc<String>, | ^^^^^^^^^^^ help: try: `Arc<str>` @@ -8,43 +8,43 @@ LL | bad1: Arc<String>, = help: to override `-D warnings` add `#[allow(clippy::rc_buffer)]` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:11:11 + --> tests/ui/rc_buffer_arc.rs:11:11 | LL | bad2: Arc<PathBuf>, | ^^^^^^^^^^^^ help: try: `Arc<std::path::Path>` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:12:11 + --> tests/ui/rc_buffer_arc.rs:12:11 | LL | bad3: Arc<Vec<u8>>, | ^^^^^^^^^^^^ help: try: `Arc<[u8]>` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:13:11 + --> tests/ui/rc_buffer_arc.rs:13:11 | LL | bad4: Arc<OsString>, | ^^^^^^^^^^^^^ help: try: `Arc<std::ffi::OsStr>` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:19:17 + --> tests/ui/rc_buffer_arc.rs:19:17 | LL | fn func_bad1(_: Arc<String>) {} | ^^^^^^^^^^^ help: try: `Arc<str>` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:20:17 + --> tests/ui/rc_buffer_arc.rs:20:17 | LL | fn func_bad2(_: Arc<PathBuf>) {} | ^^^^^^^^^^^^ help: try: `Arc<std::path::Path>` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:21:17 + --> tests/ui/rc_buffer_arc.rs:21:17 | LL | fn func_bad3(_: Arc<Vec<u8>>) {} | ^^^^^^^^^^^^ help: try: `Arc<[u8]>` error: usage of `Arc<T>` when T is a buffer type - --> $DIR/rc_buffer_arc.rs:22:17 + --> tests/ui/rc_buffer_arc.rs:22:17 | LL | fn func_bad4(_: Arc<OsString>) {} | ^^^^^^^^^^^^^ help: try: `Arc<std::ffi::OsStr>` |
