summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/nested-tait-inference2.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/type-alias-impl-trait/nested-tait-inference2.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/type-alias-impl-trait/nested-tait-inference2.stderr b/src/test/ui/type-alias-impl-trait/nested-tait-inference2.stderr
new file mode 100644
index 000000000..f4d96038d
--- /dev/null
+++ b/src/test/ui/type-alias-impl-trait/nested-tait-inference2.stderr
@@ -0,0 +1,16 @@
+error[E0277]: the trait bound `(): Foo<FooX>` is not satisfied
+ --> $DIR/nested-tait-inference2.rs:13:13
+ |
+LL | fn foo() -> impl Foo<FooX> {
+ | ^^^^^^^^^^^^^^ the trait `Foo<FooX>` is not implemented for `()`
+LL |
+LL | ()
+ | -- return type was inferred to be `()` here
+ |
+ = help: the following other types implement trait `Foo<A>`:
+ <() as Foo<()>>
+ <() as Foo<u32>>
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.