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