aboutsummaryrefslogtreecommitdiff
path: root/tests/hover_test.odin
diff options
context:
space:
mode:
authorA1029384756 <hayden.gray104@gmail.com>2025-11-12 11:42:55 -0500
committerA1029384756 <hayden.gray104@gmail.com>2025-11-12 11:45:20 -0500
commit8d189a070ce81e44d41a4ae087576b41f61735b5 (patch)
tree4c7396f0eb4a23a4dc90dc65f30122df6467d12e /tests/hover_test.odin
parentf8a4f450e526382e8076102f6d65324cbfa5c207 (diff)
added #all_or_none
Diffstat (limited to 'tests/hover_test.odin')
-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)