[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Analysis / cast-value-weird.cpp
blobf15cc19c4477f7f9c5c875a12557ab1f61171634
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,apiModeling -verify %s
3 // expected-no-diagnostics
5 namespace llvm {
6 template <typename>
7 void cast(...);
8 void a() { cast<int>(int()); } // no-crash
9 } // namespace llvm