diff options
author | Konrad Borowski <konrad@borowski.pw> | 2020-10-07 13:26:11 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-07 08:48:20 -0700 |
commit | a04c7e0f1b6680385945ea901283d6335c4c108a (patch) | |
tree | b5f43c57b17f403c8b0cd348e0cabc02a80c8f29 /t/t4018/rust-macro-rules | |
parent | Git 2.29-rc0 (diff) | |
download | tgif-a04c7e0f1b6680385945ea901283d6335c4c108a.tar.xz |
userdiff: recognize 'macro_rules!' as starting a Rust function block
Signed-off-by: Konrad Borowski <konrad@borowski.pw>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4018/rust-macro-rules')
-rw-r--r-- | t/t4018/rust-macro-rules | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t4018/rust-macro-rules b/t/t4018/rust-macro-rules new file mode 100644 index 0000000000..ec610c5b62 --- /dev/null +++ b/t/t4018/rust-macro-rules @@ -0,0 +1,6 @@ +macro_rules! RIGHT { + () => { + // a comment + let x = ChangeMe; + }; +} |