#include <stdio.h>
char *func() {
	return "test";
}
int main() {
	char *str = func();
	printf("%s\n", str);
	return 0;
}

