aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/builtin_source_location.c
blob: 02778bd86697cdde0c20203c7dd08aeb847c8681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -fsyntax-only -verify %s

int main(void) {
  int line = __builtin_LINE();
  __builtin_LINE(42); // expected-error {{expected ')'}}
  __builtin_LINE(double); // expected-error {{expected ')'}}

  int column = __builtin_COLUMN();
  __builtin_COLUMN(42); // expected-error {{expected ')'}}
  __builtin_COLUMN(double); // expected-error {{expected ')'}}

  const char *func = __builtin_FUNCTION();
  __builtin_FUNCTION(42); // expected-error {{expected ')'}}
  __builtin_FUNCTION(double); // expected-error {{expected ')'}}

  const char *file = __builtin_FILE();
  __builtin_FILE(42); // expected-error {{expected ')'}}
  __builtin_FILE(double); // expected-error {{expected ')'}}
}