bendns' repos
/
rust-analyzer
Unnamed repository; edit this file 'description' to name the repository.
f2f5748
rust-analyzer
/ crates/syntax/test_data/parser/ok/0058_unary_expr_precedence.rs
Raw
1
2
3
4
5
6
7
fn foo() { 1 + *&2 + 3; *&1 as u64; *x(1); &x[1]; -1..2; }