inline _Bool test(int t){
	return t == 3;
}

int main()
{
	test(6);
}
