reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST1
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST2
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST3
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST4
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST5
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST6
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST7
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST8
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST9 -ffreestanding

#if TEST1
int main; // expected-warning{{variable named 'main' with external linkage has undefined behavior}}

#elif TEST2
extern int main; // expected-warning{{variable named 'main' with external linkage has undefined behavior}}

#elif TEST3
// expected-no-diagnostics
void x() {
  static int main;
}

#elif TEST4
void x() {
  extern int main; // expected-warning{{variable named 'main' with external linkage has undefined behavior}}
}

#elif TEST5
// expected-no-diagnostics
void x() {
  int main;
}

#elif TEST6
// expected-no-diagnostics
static int main;

#elif TEST7
// expected-no-diagnostics
void x() {
  auto int main;
}

#elif TEST8
// expected-no-diagnostics
void x() {
  register int main;
}

#elif TEST9
// expected-no-diagnostics
int main;

#else
#error Unknown Test
#endif