summaryrefslogtreecommitdiff
path: root/tests/query/highlights/gleam/try.gleam
blob: 136d44eb4f26432f9e2d58e3be57ff226e5d1727 (plain)
1
2
3
4
5
6
7
8
9
10
11
pub fn main() {
  try x = Ok(1)
  // <- keyword
  //  ^ variable
  //    ^ operator
  //      ^ type
  //        ^ punctuation.bracket
  //         ^ number
  //          ^ punctuation.bracket
  Ok(x + 1)
}