aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0130_let_stmt.rs
blob: 86803fe08aadb0cd86b6fc0b5276b0f7aab8ee9a (plain)
1
2
3
4
5
6
7
8
fn foo() {
    let a;
    let b: i32;
    let c = 92;
    let d: i32 = 92;
    let e: !;
    let _: ! = {};
}