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