From 3c20676cdfe2d1676dc8f506dc09fe7d2043b4a3 Mon Sep 17 00:00:00 2001 From: Jonathan Arnett Date: Fri, 3 Mar 2023 16:30:06 -0500 Subject: [PATCH] Add highlight test for `let assert` --- test/highlight/functions.gleam | 6 ++++++ 1 file changed, 6 insertions(+) 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 +}