Home | History | Annotate | Line # | Download | only in lint1
msg_116.c revision 1.2
      1 /*	$NetBSD: msg_116.c,v 1.2 2021/01/08 21:25:03 rillig Exp $	*/
      2 # 3 "msg_116.c"
      3 
      4 // Test for message: illegal pointer subtraction [116]
      5 
      6 unsigned long
      7 example(int *a, double *b)
      8 {
      9 	return a - b;
     10 }
     11