![]() |
![]() |
0435 | ![]() |
||||
![]() | |||||||
| Constraint violations | REFERENCE - ISO:C90-6.3.2.3 Structure and union members | ||||||
This is a constraint error You are referencing a non-existent member of a struct or a union. QAC has assumed that it is declared with default type int.
/*PRQA S 2213,2216,3120,3408,3447 ++ */
struct ST {int a; int b;};
extern struct ST stx;
void foo(void)
{
stx.a = 1;
stx.b = 2;
stx.c = 3; /* Message 0435 */
}
MISRA C:2012 Rules applicable to message 0435:
| Rule-1.1 (Required) | The program shall contain no violations of the standard C syntax and constraints, and shall not exceed the implementation's translation limits |
![]() | ||
| QA·C Source Code Analyser 8.1
MISRA C:2012 Compliance Module 1.0 © 2012 Programming Research. www.programmingresearch.com | Personality Groups | Glossary | Message Index | MISRA C:2012 Rule Index | Contents |