mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
371 B
Rust
20 lines
371 B
Rust
//@ check-pass
|
|
|
|
enum Sexpression {
|
|
Num(()),
|
|
Cons(&'static mut Sexpression)
|
|
}
|
|
|
|
fn causes_error_in_ast(mut l: &mut Sexpression) {
|
|
loop { match l {
|
|
&mut Sexpression::Num(ref mut n) => {},
|
|
&mut Sexpression::Cons(ref mut expr) => {
|
|
l = &mut **expr;
|
|
}
|
|
}}
|
|
}
|
|
|
|
|
|
fn main() {
|
|
causes_error_in_ast(&mut Sexpression::Num(()));
|
|
}
|