From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- ...es-binding-to-type-defined-in-supertrait.stderr | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/test/ui/associated-types/associated-types-binding-to-type-defined-in-supertrait.stderr (limited to 'src/test/ui/associated-types/associated-types-binding-to-type-defined-in-supertrait.stderr') diff --git a/src/test/ui/associated-types/associated-types-binding-to-type-defined-in-supertrait.stderr b/src/test/ui/associated-types/associated-types-binding-to-type-defined-in-supertrait.stderr new file mode 100644 index 000000000..0cccc6b38 --- /dev/null +++ b/src/test/ui/associated-types/associated-types-binding-to-type-defined-in-supertrait.stderr @@ -0,0 +1,37 @@ +error[E0271]: type mismatch resolving `::Color == Blue` + --> $DIR/associated-types-binding-to-type-defined-in-supertrait.rs:31:10 + | +LL | fn b() { blue_car(ModelT); } + | ^^^^^^^^ type mismatch resolving `::Color == Blue` + | +note: expected this to be `Blue` + --> $DIR/associated-types-binding-to-type-defined-in-supertrait.rs:16:40 + | +LL | impl Vehicle for ModelT { type Color = Black; } + | ^^^^^ +note: required by a bound in `blue_car` + --> $DIR/associated-types-binding-to-type-defined-in-supertrait.rs:27:19 + | +LL | fn blue_car>(c: C) { + | ^^^^^^^^^^ required by this bound in `blue_car` + +error[E0271]: type mismatch resolving `::Color == Black` + --> $DIR/associated-types-binding-to-type-defined-in-supertrait.rs:32:10 + | +LL | fn c() { black_car(ModelU); } + | ^^^^^^^^^ type mismatch resolving `::Color == Black` + | +note: expected this to be `Black` + --> $DIR/associated-types-binding-to-type-defined-in-supertrait.rs:21:40 + | +LL | impl Vehicle for ModelU { type Color = Blue; } + | ^^^^ +note: required by a bound in `black_car` + --> $DIR/associated-types-binding-to-type-defined-in-supertrait.rs:24:20 + | +LL | fn black_car>(c: C) { + | ^^^^^^^^^^^ required by this bound in `black_car` + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0271`. -- cgit v1.2.3