1
Fork 0
rust/tests/ui/recursion/issue-23302-3.rs

6 lines
77 B
Rust
Raw Normal View History

2018-04-15 23:21:00 +02:00
const A: i32 = B; //~ ERROR cycle detected
2012-04-04 16:12:57 -07:00
2018-04-15 23:21:00 +02:00
const B: i32 = A;
fn main() { }