Revert "Update newly failing UI tests"
This reverts commit 9c46173895430c63066731440e00faf0ab2195dd.
This commit is contained in:
parent
8b80bc1bf4
commit
69de8fbbeb
@ -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,
|
||||
}
|
||||
|
@ -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`.
|
@ -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!()
|
||||
|
@ -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`.
|
Loading…
x
Reference in New Issue
Block a user