diff options
Diffstat (limited to 'tests/hover_test.odin')
| -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 323fe81..6800556 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -4864,6 +4864,16 @@ ast_hover_simd_array_pointer :: proc(t: ^testing.T) { } test.expect_hover(t, &source, "test.foo: ^#simd[4]f32") } + +@(test) +ast_hover_const_untyped_value :: proc(t: ^testing.T) { + source := test.Source { + main = `package test + F{*}OO :: 123 + `, + } + test.expect_hover(t, &source, "test.FOO :: 123") +} /* Waiting for odin fix |