aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0130_let_stmt.rs
blob: fa8ee49a23101f872274480bd1519351d175b96b (plain)
1
2
3
4
5
6
7
8
9
fn foo() {
    let a;
    let b: i32;
    let c = 92;
    let d: i32 = 92;
    let e: !;
    let _: ! = {};
    let f = #[attr]||{};
}