diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-02-17 22:07:16 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-02-17 22:07:16 +0000 |
commit | 9500ad521121f501aea02f549223eb583cb298ee (patch) | |
tree | a383a2e71da6029bbd6a5669b5f9d2b99a1b0a92 /tests/data/parser/inline/0034_bind_pat.rs | |
parent | 8c4c5b5b802a204bfeef52e215358ae838900f1f (diff) | |
parent | c6f4a06b4297f498da4bc2cd747aa38effb855b0 (diff) |
Merge #54
54: G: value_parameters, patterns & let statement r=matklad a=matklad
bors r+
Diffstat (limited to 'tests/data/parser/inline/0034_bind_pat.rs')
-rw-r--r-- | tests/data/parser/inline/0034_bind_pat.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/data/parser/inline/0034_bind_pat.rs b/tests/data/parser/inline/0034_bind_pat.rs new file mode 100644 index 000000000..604db2407 --- /dev/null +++ b/tests/data/parser/inline/0034_bind_pat.rs | |||
@@ -0,0 +1,6 @@ | |||
1 | fn main() { | ||
2 | let a = (); | ||
3 | let ref b = (); | ||
4 | let ref mut c = (); | ||
5 | let d @ _ = (); | ||
6 | } | ||