summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/need_type_info/concrete-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/inference/need_type_info/concrete-impl.rs')
-rw-r--r--tests/ui/inference/need_type_info/concrete-impl.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/ui/inference/need_type_info/concrete-impl.rs b/tests/ui/inference/need_type_info/concrete-impl.rs
index 72e0e74f3..fc79e6201 100644
--- a/tests/ui/inference/need_type_info/concrete-impl.rs
+++ b/tests/ui/inference/need_type_info/concrete-impl.rs
@@ -7,10 +7,13 @@ struct Two;
struct Struct;
impl Ambiguous<One> for Struct {}
+//~^ NOTE multiple `impl`s satisfying `Struct: Ambiguous<_>` found
impl Ambiguous<Two> for Struct {}
fn main() {
<Struct as Ambiguous<_>>::method();
//~^ ERROR type annotations needed
+ //~| NOTE cannot infer type of the type parameter `A`
//~| ERROR type annotations needed
+ //~| NOTE infer type of the type parameter `A`
}