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