1export fn a() void {
2 x += 1;
3}
4export fn b() void {
5 x += 1;
6}
7
8// error
9//
10// :2:5: error: use of undeclared identifier 'x'
11// :5:5: error: use of undeclared identifier 'x'