Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
recursion
/
issue-23302-1.rs
blob: 24e79dc581197b345d0f7d9a10fa590db34fd4c0 [
file
] [
log
] [
blame
] [
edit
]
// Check that an enum with recursion in the discriminant throws
// the appropriate error (rather than, say, blowing the stack).
enum
X
{
A
=
X
::
A
as
isize
,
//~ ERROR E0391
}
fn
main
()
{
}