Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*	$NetBSD: msg_022.c,v 1.6 2023/03/28 14:44:34 rillig Exp $	*/
# 3 "msg_022.c"

// Test for message: incomplete or misplaced function definition [22]

/* lint1-extra-flags: -X 351 */

/*
 * Before decl.c 1.264 and func.c 1.130 from 2022-04-02, lint ran into
 * assertion failures after trying to recover from the below syntax error.
 */
/* expect+1: error: syntax error 'f' [249] */
unsigned long asdf = sizeof(int f() {});

/* Give the parser a chance to recover. */
/* expect+1: warning: empty declaration [0] */
;

/*
 * Before decl.c 1.264 and func.c 1.130 from 2022-04-02, lint ran into
 * assertion failures after trying to recover from the below syntax error.
 */
/* expect+1: error: syntax error 'param1' [249] */
unsigned long sz = sizeof(int(param1, param2));

/* Give the parser a chance to recover. */
/* expect+1: warning: empty declaration [0] */
;

/* expect+2: error: incomplete or misplaced function definition [22] */
/* expect+1: warning: old-style declaration; add 'int' [1] */
old_style(arg);