rust/tests/ui/issues/issue-23302-3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
77 B
Rust
Raw Normal View History

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