mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
24 lines
421 B
C++
24 lines
421 B
C++
/* Conformance Test 11.4.2.1: Type qualifiers should be allowed both in */
|
|
/* type casts and in the type-specifiers for */
|
|
/* field lists. */
|
|
|
|
#include <stdio.h>
|
|
|
|
struct foo {
|
|
int i;
|
|
const j;
|
|
volatile k;
|
|
} ;
|
|
|
|
main ()
|
|
|
|
{
|
|
int i,j;
|
|
|
|
j = 4;
|
|
i = (const) j;
|
|
i = (volatile) j;
|
|
|
|
printf ("Passed Conformance Test 11.4.2.1\n");
|
|
}
|