diff options
Diffstat (limited to 'tools/odinfmt/tests/comments.odin')
| -rw-r--r-- | tools/odinfmt/tests/comments.odin | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/odinfmt/tests/comments.odin b/tools/odinfmt/tests/comments.odin index a7bea72..6d0eb6f 100644 --- a/tools/odinfmt/tests/comments.odin +++ b/tools/odinfmt/tests/comments.odin @@ -39,4 +39,10 @@ bracket_comments_alignment :: proc() { a := 10 // etc.. } -}
\ No newline at end of file +} + +empty_odin_fmt_block :: proc() { + //odinfmt: disable + //a := 10 + //odinfmt: enable +} |