The volatile keyword shall not be used

// CVQualifier [ @Spec = KTC_CVQUALIFIER_VOLATILE ]

1   void test205()
2   {
3       volatile int *x;
4       int y;
5       int j;
6       volatile int a,b,c; // MATCHES three times
7   }