[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / eval-recursive-constant.cpp
blob608c95d828ed78bae64f937c5285f9625639381e
1 // RUN: %clang_cc1 %s -emit-llvm-only
3 extern const int a,b;
4 const int a=b,b=a;
5 int c() { if (a) return 1; return 0; }