mirror of
https://github.com/helix-editor/helix
synced 2026-08-01 01:16:39 +02:00
11 lines
248 B
C++
11 lines
248 B
C++
void g(int x) {
|
|
auto a = Color::Red;
|
|
// ^ @type.enum.variant
|
|
auto b = Limits::MAX;
|
|
// ^ @type.enum.variant
|
|
std::cout << x;
|
|
// ^ @variable
|
|
}
|
|
enum class Status { ON };
|
|
// ^ @type.enum.variant
|