Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epidemian
GitHub Repository: epidemian/gravity
Path: blob/master/test/01-syntax/var_in_switch.gravity
1214 views
#unittest {
	name: "Test variable declaration in switch flow statement.";
	error: SYNTAX;
	error_row: 9;
	error_col: 10;
};

func main() {
	switch (var a) {
	};
}