]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-38458.rs
Rollup merge of #107186 - GuillaumeGomez:correct-pseudo-element-selector, r=notriddle
[rust.git] / tests / ui / issues / issue-38458.rs
1 const x: () = {
2     return; //~ ERROR return statement outside of function body
3 };
4
5 fn main() {}