summary refs log tree commit diff
path: root/src/test/compile-fail/const-recursive.rs
blob: e242948b322e90f5d5c60421609f6864a8beb5ea (plain)
1
2
3
4
5
6
// error-pattern: recursive constant
const a: int = b;
const b: int = a;

fn main() {
}