Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
enum
/
issue-1821.rs
blob: 76d60962c38be06d8fb0f2fb64871cfd2a25e4ff [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_camel_case_types
)]
// Issue #1821 - Don't recurse trying to typecheck this
//@ pretty-expanded FIXME #23616
enum
t
{
foo
(
Vec
<
t
>)
}
pub
fn
main
()
{}