diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/hover_test.odin | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index df7aeae..4f81238 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -2803,6 +2803,16 @@ ast_hover_proc_calling_convention :: proc(t: ^testing.T) { } test.expect_hover(t, &source, "test.foo: proc \"contextless\" (a: int)") } + +@(test) +ast_hover_proc_directives :: proc(t: ^testing.T) { + source := test.Source { + main = `package test + f{*}oo :: proc(a: int) #no_bounds_check {} + `, + } + test.expect_hover(t, &source, "test.foo: proc(a: int) #no_bounds_check") +} /* Waiting for odin fix |