test114
auto test114 = 
q{--- test114
	// test ptr slice correctenss
	struct Array
	{
		i32* bufPtr;
		u32 length;
		u32 capacity;
		i32[] data()
		{
			return bufPtr[0..length];
		}
	}
	i32[] test(Array* array)
	{
		return array.data;
	}
};
  
		tests passing 
		functionsvariables