int main(void) {
	int i;
	typeof(i) *j;
	const typeof(j) k;

	(typeof(i + 2))k;

	return 0;
}

