summaryrefslogtreecommitdiff
path: root/tests/query/highlights/gleam/assert.gleam
blob: e49b3d2c4380debe99483a8426a038fc7042aa4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub fn main() {
  assert Ok(i) = parse_int("123")
  // <- exception
  //     ^ type
  //       ^ punctuation.bracket
  //        ^ variable
  //         ^ punctuation.bracket
  //           ^ operator
  //             ^ function
  //                      ^ punctuation.bracket
  //                       ^ string
  //                            ^ punctuation.bracket
}