1 2 3 4 5 6 7 8 9 10 11
/* Tests usage of constant modifiers. */ #include <testfwk.h> void testUMod(void) { volatile unsigned char a = 0; ASSERT((a |= 0xFFL) == 0xFFL); }