Files
2026-06-20 14:49:53 +09:00

14 lines
262 B
Rust

use std::fmt;
// ^ @namespace
enum Color { Red }
// ^ @type.enum.variant
fn f(self) {
// ^ @variable.builtin
println!("ok");
// ^ @function.macro
self.helper();
// ^ @function.method
let p = Point {};
// ^ @constructor
}