Home | History | Annotate | Download | only in lint1

Lines Matching refs:function

4 // Test for message: compiler takes alignment of function [14]
9 typedef void function(void);
11 /* expect+1: error: cannot take size/alignment of function type 'function(void) returning void' [144] */
12 unsigned long alignof_function = __alignof__(function);
15 /* expect+1: warning: invalid bit-field type 'function(void) returning void' [35] */
16 function bit_field:1;
17 /* expect+1: error: function invalid in structure or union [38] */
18 function member;
22 /* expect+1: error: array of function is invalid [16] */
23 function member[5];