/* >>>------------------------------------------------------------ * * File: rule_18.4.c, Module: M2CM-3.2-QAC-8.1.2 * * RULE 18.4 (Required): * Unions shall not be used. * * Implemented by messages: * 750 A union type specifier has been defined. * * 759 An object of union type has been defined. * * <<<------------------------------------------------------------ */ /* PRQA S 3205 ++ */ #include "misra.h" #include "m2cmex.h" union test { S8 *c; S32 i; }; extern S16 test_1804( void ) { union test mytest; /* MISRA Violation */ return 0; }