10 lines
218 B
C++
10 lines
218 B
C++
|
// 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
|