Revert "Update newly failing UI tests"

This reverts commit 9c46173895.
This commit is contained in:
Guillaume Gomez 2023-01-19 20:27:00 +01:00
parent 8b80bc1bf4
commit 69de8fbbeb
4 changed files with 7 additions and 34 deletions

View file

@ -1,10 +1,12 @@
// check-pass
// normalize-stderr-test: "`.*`" -> "`DEF_ID`"
// normalize-stdout-test: "`.*`" -> "`DEF_ID`"
// edition:2018
pub async fn f() -> impl std::fmt::Debug {
// rustdoc doesn't care that this is infinitely sized
#[derive(Debug)]
enum E { //~ ERROR
enum E {
This(E),
Unit,
}

View file

@ -1,16 +0,0 @@
error[E0072]: recursive type `DEF_ID` has infinite size
--> $DIR/infinite-recursive-type-impl-trait-return.rs:7:5
|
LL | enum E {
| ^^^^^^
LL | This(E),
| - recursive without indirection
|
help: insert some indirection (e.g., a `DEF_ID`) to break the cycle
|
LL | This(Box<E>),
| ++++ +
error: aborting due to previous error
For more information about this error, try `DEF_ID`.

View file

@ -1,5 +1,8 @@
// check-pass
fn f() -> impl Sized {
enum E { //~ ERROR
// rustdoc doesn't care that this is infinitely sized
enum E {
V(E),
}
unimplemented!()

View file

@ -1,16 +0,0 @@
error[E0072]: recursive type `f::E` has infinite size
--> $DIR/infinite-recursive-type-impl-trait.rs:2:5
|
LL | enum E {
| ^^^^^^
LL | V(E),
| - recursive without indirection
|
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
|
LL | V(Box<E>),
| ++++ +
error: aborting due to previous error
For more information about this error, try `rustc --explain E0072`.