aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query/highlights')
-rw-r--r--tests/query/highlights/gleam/try.gleam11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/query/highlights/gleam/try.gleam b/tests/query/highlights/gleam/try.gleam
deleted file mode 100644
index 22c72c39e..000000000
--- a/tests/query/highlights/gleam/try.gleam
+++ /dev/null
@@ -1,11 +0,0 @@
-pub fn main() {
- try x = Ok(1)
- // <- exception
- // ^ variable
- // ^ operator
- // ^^ constant.builtin
- // ^ punctuation.bracket
- // ^ number
- // ^ punctuation.bracket
- Ok(x + 1)
-}