struct Coder {
    float **data;
};

typedef Coder *AUTO;

int main()
{
	AUTO mm = new Coder;
	mm->data = 0;

	return 0;
}