Skip to content

Add information about identifiers prefixed with "@"

m-shinder requested to merge m-shinder/vala:master into main

Information about "@"-prefixed identifiers is not complete. i.e this snippet is valid Vala code

int main() {
	int @0variable;
	@0variable = 42;
	return @0variable;
}

Merge request reports