diff --git a/test/highlight/functions.gleam b/test/highlight/functions.gleam index 565157691..73366548a 100644 --- a/test/highlight/functions.gleam +++ b/test/highlight/functions.gleam @@ -108,3 +108,9 @@ fn comment_string_test() { // ^ function // ^ string } + +fn let_assert_test() { + let assert #(x, _) = #(1, 2) + // <- keyword + // ^ keyword +}