Announce SDCC 4.5.0 RC2.
[sdcc.git] / sdcc / support / valdiag / tests / bug-3603.c
blob22b11c5a0106682e077d567bb7b958086323ff14
1 /* bug-3464.c
3 Issues in the diagnostics for attempting to take the address of the result of an unary operator.
4 */
6 #ifdef TEST1
7 int *p(int i)
9 return &(-i); /* ERROR */
11 #endif