struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug3424150.c
blobc7d7f718a99d05c9d34df28621f724fec93287bb
1 /*
2 bug3424150.c
3 */
5 #include <testfwk.h>
7 #ifndef __SDCC_pdk14 // Lack of memory
8 unsigned char _pInputBuf[80];
9 unsigned char _iInputPos;
11 void OnEditCancel()
13 if (!_pInputBuf[_iInputPos] && _iInputPos)
15 _iInputPos --;
17 _pInputBuf[_iInputPos] = 0;
19 #endif
21 void
22 testBug(void)