summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-21673.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/issue-21673.stderr')
-rw-r--r--src/test/ui/suggestions/issue-21673.stderr29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/test/ui/suggestions/issue-21673.stderr b/src/test/ui/suggestions/issue-21673.stderr
deleted file mode 100644
index 523d7a7cc..000000000
--- a/src/test/ui/suggestions/issue-21673.stderr
+++ /dev/null
@@ -1,29 +0,0 @@
-error[E0599]: no method named `method` found for reference `&T` in the current scope
- --> $DIR/issue-21673.rs:6:7
- |
-LL | x.method()
- | ^^^^^^ method not found in `&T`
- |
- = help: items from traits can only be used if the type parameter is bounded by the trait
-help: the following trait defines an item `method`, perhaps you need to restrict type parameter `T` with it:
- |
-LL | fn call_method<T: std::fmt::Debug + Foo>(x: &T) {
- | +++++
-
-error[E0599]: no method named `method` found for type parameter `T` in the current scope
- --> $DIR/issue-21673.rs:10:7
- |
-LL | fn call_method_2<T>(x: T) {
- | - method `method` not found for this type parameter
-LL | x.method()
- | ^^^^^^ method not found in `T`
- |
- = help: items from traits can only be used if the type parameter is bounded by the trait
-help: the following trait defines an item `method`, perhaps you need to restrict type parameter `T` with it:
- |
-LL | fn call_method_2<T: Foo>(x: T) {
- | +++++
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0599`.