6 lines
87 B
Rust
6 lines
87 B
Rust
// error-pattern: recursive constant
|
|
const a: int = b;
|
|
const b: int = a;
|
|
|
|
fn main() {
|
|
} |