aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0156_const_block_pat.rs
blob: dce9defac2f9fdc312a082f503f2183d9161870e (plain)
1
2
3
4
fn main() {
    let const { 15 } = ();
    let const { foo(); bar() } = ();
}