summaryrefslogtreecommitdiffstats
path: root/tests/ui/return/issue-64620.rs
blob: ab293165195fd83749e5e89f0e3dec2585efbd4e (plain)
1
2
3
4
5
enum Bug {
    V1 = return [0][0], //~ERROR return statement outside of function body
}

fn main() {}