summaryrefslogtreecommitdiff
path: root/support/regression/tests/constmodifiers.c
blob: f64dc7769e98dba30257c92d64c56c5e1a62fffa (plain)
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);
}