xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_068.c (revision ccd9df534e375a4366c5b55f23782053c7a98d82)
1 /*	$NetBSD: msg_068.c,v 1.5 2023/03/28 14:44:34 rillig Exp $	*/
2 # 3 "msg_068.c"
3 
4 // Test for message: typedef already qualified with '%s' [68]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 typedef const char const_char;
9 
10 /* expect+1: warning: typedef already qualified with 'const' [68] */
11 const const_char twice_const;
12