rust/crates/libsyntax2/tests/data/parser/inline/0074_unary_expr.rs

6 lines
44 B
Rust
Raw Normal View History

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