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

// Top level extension marker.

__extension__ typedef struct
{
    long long int quot; 
    long long int rem; 
}lldiv_t; 


// Compound expr __extension__ marker.
void bar() {
  __extension__ int i;
  int j;
}