mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 14:50:04 +08:00
14 lines
394 B
Plaintext
Vendored
14 lines
394 B
Plaintext
Vendored
pub fn main() {
|
|
assert Ok(i) = parse_int("123")
|
|
// <- exception
|
|
// ^^ constructor
|
|
// ^ punctuation.bracket
|
|
// ^ variable
|
|
// ^ punctuation.bracket
|
|
// ^ operator
|
|
// ^^^^^^^^^ function.call
|
|
// ^ punctuation.bracket
|
|
// ^^^^^ string
|
|
// ^ punctuation.bracket
|
|
}
|