diff options
Diffstat (limited to 'tests/ui/issues/issue-32323.stderr')
-rw-r--r-- | tests/ui/issues/issue-32323.stderr | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ui/issues/issue-32323.stderr b/tests/ui/issues/issue-32323.stderr deleted file mode 100644 index 8212c607e..000000000 --- a/tests/ui/issues/issue-32323.stderr +++ /dev/null @@ -1,18 +0,0 @@ -error[E0308]: mismatched types - --> $DIR/issue-32323.rs:5:30 - | -LL | pub fn f<'a, T: Tr<'a>>() -> <T as Tr<'a>>::Out {} - | - ^^^^^^^^^^^^^^^^^^ expected associated type, found `()` - | | - | implicitly returns `()` as its body has no tail or `return` expression - | - = note: expected associated type `<T as Tr<'a>>::Out` - found unit type `()` -help: consider constraining the associated type `<T as Tr<'a>>::Out` to `()` - | -LL | pub fn f<'a, T: Tr<'a, Out = ()>>() -> <T as Tr<'a>>::Out {} - | ++++++++++ - -error: aborting due to previous error - -For more information about this error, try `rustc --explain E0308`. |