cast-value-weird.cpp 218 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 // RUN: %clang_analyze_cc1 -analyzer-checker=core,apiModeling -verify %s // expected-no-diagnostics namespace llvm { template <typename> void cast(...); void a() { cast<int>(int()); } // no-crash } // namespace llvm