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
| // Rank > 0 array
typedef volatile int* RankNArray[10][100];
RankNArray ArrayVar;
typedef int __unaligned *UnalignedTypedef;
UnalignedTypedef UnVar;
typedef long* __restrict RestrictTypedef;
RestrictTypedef RestrictVar;
void Func1(const int* a, int const* b, const int ** const c, const int* const* d) {
return;
}
void Func2(volatile int* a, int volatile* b) {
return;
}
void Func3(int*& a, int& b, const int&c, int&& d) {
return;
}
void Func4(int* __unaligned a, __unaligned int* b) {
return;
}
void Func5(int a, int* __restrict b, int& __restrict c) {
return;
}
void Func6(const volatile int* __restrict b) {
return;
}
// LValue
typedef int& IntRef;
int x = 0;
IntRef IVar = x;
// RValue
typedef int&& IIRef;
IIRef IIVar = int(1);
int main() {
return 0;
}
|