summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_box_returns.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/unnecessary_box_returns.stderr')
-rw-r--r--src/tools/clippy/tests/ui/unnecessary_box_returns.stderr35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/unnecessary_box_returns.stderr b/src/tools/clippy/tests/ui/unnecessary_box_returns.stderr
new file mode 100644
index 000000000..b17512c10
--- /dev/null
+++ b/src/tools/clippy/tests/ui/unnecessary_box_returns.stderr
@@ -0,0 +1,35 @@
+error: boxed return of the sized type `usize`
+ --> $DIR/unnecessary_box_returns.rs:5:22
+ |
+LL | fn baz(&self) -> Box<usize>;
+ | ^^^^^^^^^^ help: try: `usize`
+ |
+ = help: changing this also requires a change to the return expressions in this function
+ = note: `-D clippy::unnecessary-box-returns` implied by `-D warnings`
+
+error: boxed return of the sized type `usize`
+ --> $DIR/unnecessary_box_returns.rs:18:22
+ |
+LL | fn baz(&self) -> Box<usize> {
+ | ^^^^^^^^^^ help: try: `usize`
+ |
+ = help: changing this also requires a change to the return expressions in this function
+
+error: boxed return of the sized type `usize`
+ --> $DIR/unnecessary_box_returns.rs:25:20
+ |
+LL | fn bxed_usize() -> Box<usize> {
+ | ^^^^^^^^^^ help: try: `usize`
+ |
+ = help: changing this also requires a change to the return expressions in this function
+
+error: boxed return of the sized type `Foo`
+ --> $DIR/unnecessary_box_returns.rs:30:19
+ |
+LL | fn _bxed_foo() -> Box<Foo> {
+ | ^^^^^^^^ help: try: `Foo`
+ |
+ = help: changing this also requires a change to the return expressions in this function
+
+error: aborting due to 4 previous errors
+