shithub: scc

ref: 4c642e3e66899c12f4de7e7bda7f2b96e122b342
dir: /cc1/tests/test042.c/

View raw version
/* See LICENSE file for copyright and license details. */

/*
name: TEST042
description: Test for bug parsing ternary operators
error:
test042.c:20: error: bad type conversion requested
output:
G2	I	F	"main
{
\
X4	0	F	"f
*/

int
main(void)
{
        void f(void);

        return (int) f();
}