diff options
author | Aleksey Kladov <[email protected]> | 2018-08-26 07:12:18 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-26 07:12:18 +0100 |
commit | a450142aca947b9364e498897f522f854f19781d (patch) | |
tree | f4ebe8f259582042bd251c595629599abcbe9524 /crates/libsyntax2/tests/data/parser/err/0017_incomplete_binexpr.rs | |
parent | a48964c64de635f532874ede293d91df54e624d7 (diff) |
fix stray curly
Diffstat (limited to 'crates/libsyntax2/tests/data/parser/err/0017_incomplete_binexpr.rs')
-rw-r--r-- | crates/libsyntax2/tests/data/parser/err/0017_incomplete_binexpr.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/libsyntax2/tests/data/parser/err/0017_incomplete_binexpr.rs b/crates/libsyntax2/tests/data/parser/err/0017_incomplete_binexpr.rs new file mode 100644 index 000000000..17bd49777 --- /dev/null +++ b/crates/libsyntax2/tests/data/parser/err/0017_incomplete_binexpr.rs | |||
@@ -0,0 +1,4 @@ | |||
1 | fn foo(foo: i32) { | ||
2 | let bar = 92; | ||
3 | 1 + | ||
4 | } | ||