Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
incremental
/
issue-61323.rs
blob: b7423c81fc163327243684831365591e62d41a96 [
file
] [
log
] [
blame
] [
edit
]
//@ revisions: rpass cfail
enum
A
{
//[cfail]~^ ERROR 3:1: 3:7: recursive types `A` and `C` have infinite size [E0072]
B
(
C
),
}
#[
cfg
(
rpass
)]
struct
C
(
Box
<
A
>);
#[
cfg
(
cfail
)]
struct
C
(
A
);
fn
main
()
{}