gbdk-releases/sdcc/support/regression/tests/constmodifiers.c
2015-01-10 16:25:09 +01:00

11 lines
154 B
C

/* Tests usage of constant modifiers.
*/
#include <testfwk.h>
void
testUMod(void)
{
volatile unsigned char a = 0;
ASSERT((a |= 0xFFL) == 0xFFL);
}