rust-analyzer/tests/data/parser/inline/0074_unary_expr.rs

6 lines
44 B
Rust
Raw Normal View History

2018-07-31 21:19:04 +00:00
fn foo() {
2018-08-07 11:56:33 +00:00
**&1;
2018-07-31 21:19:04 +00:00
!!true;
2018-08-07 11:56:33 +00:00
--1;
2018-07-31 21:19:04 +00:00
}