aboutsummaryrefslogtreecommitdiff
path: root/tests/blocks.ek
blob: bc210a24e621e8c404c6817c843ff81a18b05504 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
main()
{
	mut a = switch 1 {
	case 2: 2
	case 1: 1
	default: 20; 20
	};

	mut c = ({2 + 2; 4 + 4});
}