Sign in
fuchsia
/
third_party
/
rust
/
8ae423e5e8db47b8233ad657b8d84247f94de179
/
.
/
tests
/
ui
/
query-system
/
query-cycle-printing-issue-151226.rs
blob: 551321619ddd0a4ce5ff1cc8f9c1cac4ab5123ee [
file
]
struct
A
<
T
>(
std
::
sync
::
OnceLock
<
Self
>);
//~^ ERROR recursive type `A` has infinite size
static
B
:
A
<()>
=
todo
!();
fn
main
()
{}