summaryrefslogtreecommitdiff
path: root/hs/test.txt
blob: 1a2f551faa45a475d9c749939e23dcf86b01b865 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
	a := 10;
	f := ??{
		print(a);
		g := ??{
			print(a);
		};
		// g();
	};
	f();
};