xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/warn-missing-variable-declarations.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -Wmissing-variable-declarations -fsyntax-only -verify %s
2f4a2713aSLionel Sambuc 
3f4a2713aSLionel Sambuc int vbad1; // expected-warning{{no previous extern declaration for non-static variable 'vbad1'}}
4f4a2713aSLionel Sambuc 
5f4a2713aSLionel Sambuc int vbad2;
6f4a2713aSLionel Sambuc int vbad2 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad2'}}
7f4a2713aSLionel Sambuc 
8f4a2713aSLionel Sambuc struct {
9f4a2713aSLionel Sambuc   int mgood1;
10f4a2713aSLionel Sambuc } vbad3; // expected-warning{{no previous extern declaration for non-static variable 'vbad3'}}
11f4a2713aSLionel Sambuc 
12f4a2713aSLionel Sambuc int vbad4;
13f4a2713aSLionel Sambuc int vbad4 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad4'}}
14f4a2713aSLionel Sambuc extern int vbad4;
15f4a2713aSLionel Sambuc 
16f4a2713aSLionel Sambuc extern int vgood1;
17f4a2713aSLionel Sambuc int vgood1;
18f4a2713aSLionel Sambuc int vgood1 = 10;
19