test121
auto test121 = 
q{--- test121
	// Test global struct initialization with pointers
	u32 a = 1;
	u32 b = 2;
	u32 c = 3;
	u32 d = 4;
	struct S {
		u32* a;
		u32* b;
		u32* c;
		u32* d;
	}
	S glob = S(&a, &b, &c, &d);
	S read_global() { return glob; }
};
  
		tests passing 
		functionsvariables