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