diff options
| author | A1029384756 <hayden.gray104@gmail.com> | 2025-11-12 11:42:55 -0500 |
|---|---|---|
| committer | A1029384756 <hayden.gray104@gmail.com> | 2025-11-12 11:45:20 -0500 |
| commit | 8d189a070ce81e44d41a4ae087576b41f61735b5 (patch) | |
| tree | 4c7396f0eb4a23a4dc90dc65f30122df6467d12e /tests | |
| parent | f8a4f450e526382e8076102f6d65324cbfa5c207 (diff) | |
added #all_or_none
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/hover_test.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index 09f4bb9..8a41efc 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -3972,11 +3972,11 @@ ast_hover_struct_tags :: proc(t: ^testing.T) { ast_hover_struct_tags_packed :: proc(t: ^testing.T) { source := test.Source { main = `package test - Fo{*}o :: struct($T: typeid) #packed { + Fo{*}o :: struct($T: typeid) #packed #all_or_none { } `, } - test.expect_hover(t, &source, "test.Foo :: struct($T: typeid) #packed {}") + test.expect_hover(t, &source, "test.Foo :: struct($T: typeid) #packed #all_or_none {}") } @(test) |