Home | History | Annotate | Line # | Download | only in lint1
msg_229.c revision 1.3
      1 /*	$NetBSD: msg_229.c,v 1.3 2021/02/28 00:52:16 rillig Exp $	*/
      2 # 3 "msg_229.c"
      3 
      4 // Test for message: questionable conversion of function pointer [229]
      5 
      6 typedef double (*unary_operator)(double);
      7 
      8 int *
      9 example(unary_operator op)
     10 {
     11 	return (int *)op;
     12 }
     13