diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-05 21:20:02 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-05 21:20:02 -0400 |
| commit | 24e32736b3c19b541a810e07927db50d71e07423 (patch) | |
| tree | d1626db02ab4f255806fac323fc386163b60ca53 /tests | |
| parent | e81770b1ededb36770fd2393feb2d4450df445ef (diff) | |
Fix definition and hover for union enum types
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/hover_test.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index 028fbdb..bdd583a 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -402,7 +402,7 @@ ast_hover_union_implicit_selector :: proc(t: ^testing.T) { Foo2, } - Bar :: union { Foo } + Bar :: union { Foo, int } bar: Bar bar = .Fo{*}o1 |