aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/ty/tests/data/0001_basics.rs
blob: 59a60d0313da7f3d11b7d74a96af31f245ed36e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn test(a: u32, b: isize, c: !, d: &str) {
    a;
    b;
    c;
    d;
    1usize;
    1isize;
    "test";
    1.0f32;
}