aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBradley Lewis <22850972+BradLewis@users.noreply.github.com>2025-11-12 21:52:53 -0500
committerGitHub <noreply@github.com>2025-11-12 21:52:53 -0500
commitb2efc8f7789d2e51259d8d37da7bf59182b185fc (patch)
tree53180031a39851a338dcf4288e73c5b685455fe6 /tests
parent4dbe21aed8d350b51baa37ecb59e78e450e948da (diff)
parent8d189a070ce81e44d41a4ae087576b41f61735b5 (diff)
Merge pull request #1172 from A1029384756/master
added #all_or_none
Diffstat (limited to 'tests')
-rw-r--r--tests/hover_test.odin4
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)