]> git.lizzy.rs Git - rust.git/blob - tests/ui/recursion/recursive-static-definition.rs
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[rust.git] / tests / ui / recursion / recursive-static-definition.rs
1 pub static FOO: u32 = FOO;
2 //~^ ERROR cycle detected when const-evaluating + checking `FOO`
3
4 fn main() {}