HomeSort by: relevance | last modified time | path
    Searched defs:incomplete_union (Results 1 - 2 of 2) sorted by relevancy

  /src/tests/usr.bin/xlint/lint1/
d_alignof.c 103 /* expect+1: warning: union 'incomplete_union' never defined [234] */
104 union incomplete_union;
106 typedef int incomplete_union[-(int)__alignof(union incomplete_union)]; typedef in function:alignof_variants
init.c 87 /* expect+1: error: initialization of incomplete type 'incomplete union incomplete_union' [175] */
88 union incomplete_union u1 = {
90 /* expect+1: error: 'u1' has incomplete type 'incomplete union incomplete_union' [31] */
93 /* expect+1: error: initialization of incomplete type 'incomplete union incomplete_union' [175] */
94 union incomplete_union u2 = {
96 /* expect+1: error: 'u2' has incomplete type 'incomplete union incomplete_union' [31] */
99 union incomplete_union { union

Completed in 12 milliseconds