ref: 63c625229ddae2be9785f8c9a0e4e5c5d2a6cb6c
dir: /cc1/tests/test003.c/
/* See LICENSE file for copyright and license details. */
/*
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)();
}