comparison clang/test/Modules/Inputs/declare-use/j.h @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 #ifndef J_H
2 #define J_H
3
4 #define STR(x) #x
5 #define HDR(x) STR(x.h)
6
7 #include ALLOWED_INC
8 #include HDR(a)
9
10 const int j = a * a + b;
11
12 // expected-no-diagnostics
13
14 #endif