diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 18:31:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 18:31:44 +0000 |
commit | c23a457e72abe608715ac76f076f47dc42af07a5 (patch) | |
tree | 2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /tests/ui/issues/issue-25439.stderr | |
parent | Releasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip |
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-25439.stderr')
-rw-r--r-- | tests/ui/issues/issue-25439.stderr | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/ui/issues/issue-25439.stderr b/tests/ui/issues/issue-25439.stderr deleted file mode 100644 index dadae23fd..000000000 --- a/tests/ui/issues/issue-25439.stderr +++ /dev/null @@ -1,19 +0,0 @@ -error[E0644]: closure/generator type that references itself - --> $DIR/issue-25439.rs:8:9 - | -LL | fix(|_, x| x); - | ^^^^^^ cyclic type of infinite size - | - = note: closures cannot capture themselves or take themselves as argument; - this error may be the result of a recent compiler bug-fix, - see issue #46062 <https://github.com/rust-lang/rust/issues/46062> - for more information -note: required by a bound in `fix` - --> $DIR/issue-25439.rs:3:33 - | -LL | fn fix<F>(f: F) -> i32 where F: Fn(Helper<F>, i32) -> i32 { - | ^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `fix` - -error: aborting due to previous error - -For more information about this error, try `rustc --explain E0644`. |