mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
232 B
Rust
11 lines
232 B
Rust
|
// Regression test for #32326. We ran out of memory because we
|
||
|
// attempted to expand this case up to the recursion limit, and 2^N is
|
||
|
// too big.
|
||
|
|
||
|
enum Expr { //~ ERROR E0072
|
||
|
Plus(Expr, Expr),
|
||
|
Literal(i64),
|
||
|
}
|
||
|
|
||
|
fn main() { }
|