shithub: scc

ref: ccb1f9e706a93e7b05512cb2e89a9fc45b92641c
dir: /cc1/tests/test003.c/

View raw version
/*
name: TEST003
description: Select function to call inside ternary operator
error:
output:
G2	I	F	"foo
{
\
	h	#I2A
}
G3	I	F	"bar
{
\
	h	#I18
}
G4	I	F	"main
{
\
	h	G2	cI
}
*/

int
foo(void)
{
	return 42;
}

int
bar(void)
{
	return 24;
}

int
main(void)
{
	return (1 ? foo : bar)();
}