1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-23 02:18:23 +02:00
git/t/t4018/rust-macro-rules
Konrad Borowski a04c7e0f1b 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>
2020-10-07 08:48:20 -07:00

7 lines
89 B
Plaintext

macro_rules! RIGHT {
() => {
// a comment
let x = ChangeMe;
};
}