about summary refs log tree commit diff
path: root/tests/ui/impl-trait/call_method_on_inherent_impl.next.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/impl-trait/call_method_on_inherent_impl.next.stderr')
-rw-r--r--tests/ui/impl-trait/call_method_on_inherent_impl.next.stderr17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/ui/impl-trait/call_method_on_inherent_impl.next.stderr b/tests/ui/impl-trait/call_method_on_inherent_impl.next.stderr
deleted file mode 100644
index 271051f120a..00000000000
--- a/tests/ui/impl-trait/call_method_on_inherent_impl.next.stderr
+++ /dev/null
@@ -1,17 +0,0 @@
-error[E0282]: type annotations needed
-  --> $DIR/call_method_on_inherent_impl.rs:18:13
-   |
-LL |         let x = my_foo();
-   |             ^
-LL |
-LL |         x.my_debug();
-   |         - type must be known at this point
-   |
-help: consider giving `x` an explicit type
-   |
-LL |         let x: /* Type */ = my_foo();
-   |              ++++++++++++
-
-error: aborting due to 1 previous error
-
-For more information about this error, try `rustc --explain E0282`.