aboutsummaryrefslogtreecommitdiff
path: root/tests/completions_test.odin
diff options
context:
space:
mode:
Diffstat (limited to 'tests/completions_test.odin')
-rw-r--r--tests/completions_test.odin17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/completions_test.odin b/tests/completions_test.odin
index 92fd332..72dcb86 100644
--- a/tests/completions_test.odin
+++ b/tests/completions_test.odin
@@ -5113,3 +5113,20 @@ ast_completion_implicit_selector_enumerated_array_in_proc_call_arg :: proc(t: ^t
}
test.expect_completion_docs(t, &source, "", {"A1", "A2"})
}
+
+@(test)
+ast_completion_implicit_selector_binary_expr :: proc(t: ^testing.T) {
+ source := test.Source {
+ main = `package test
+ Foo :: enum {
+ A,
+ B,
+ }
+ main :: proc() {
+ foo: Foo
+ if foo < .{*}
+ }
+ `,
+ }
+ test.expect_completion_docs(t, &source, "", {"A", "B"})
+}