ref: 4be5b671982310f44410c71e58e88f2f2d8d2ef5
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 } G4 I F "bar { \ h #I18 } G5 I F "main { \ h G2 cI } */ int foo(void) { return 42; } int bar(void) { return 24; } int main(void) { return (1 ? foo : bar)(); }