diff options
| author | Bradley Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-11-12 21:52:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-12 21:52:53 -0500 |
| commit | b2efc8f7789d2e51259d8d37da7bf59182b185fc (patch) | |
| tree | 53180031a39851a338dcf4288e73c5b685455fe6 /tests/hover_test.odin | |
| parent | 4dbe21aed8d350b51baa37ecb59e78e450e948da (diff) | |
| parent | 8d189a070ce81e44d41a4ae087576b41f61735b5 (diff) | |
Merge pull request #1172 from A1029384756/master
added #all_or_none
Diffstat (limited to 'tests/hover_test.odin')
| -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) |