#include "../include/typedefs.h" // Example code from MISRA C:2012 begin void unused_label ( void ) { int16_t x = 6; label: /* Non-compliant */ use_int16 ( x ); } // Example code from MISRA C:2012 end