struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / constmodifiers.c
blobf64dc7769e98dba30257c92d64c56c5e1a62fffa
1 /* Tests usage of constant modifiers.
2 */
3 #include <testfwk.h>
5 void
6 testUMod(void)
8 volatile unsigned char a = 0;
10 ASSERT((a |= 0xFFL) == 0xFFL);