1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -fblocks -verify -analyzer-config eagerly-assume=false %s
2 // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -fblocks -analyzer-config c++-template-inlining=false -DNO_INLINE -verify -analyzer-config eagerly-assume=false %s
4 void clang_analyzer_eval(bool);
6 // Do not crash on this templated code which uses a block.
7 typedef void (^my_block
)(void);
8 static void useBlock(my_block block
){}
9 template<class T
> class MyClass
;
10 typedef MyClass
<float> Mf
;
23 template<class T
> const T MyClass
<T
>::one
= static_cast<T
>(1);
24 template<class T
> inline MyClass
<T
>::MyClass(T a
){}
25 template<class T
> void MyClass
<T
>::I() {
26 static MyClass
<T
>* mPtr
= 0;
27 useBlock(^{ mPtr
= new MyClass
<T
> (MyClass
<T
>::one
); });
34 template<class T
, unsigned N
>
35 inline unsigned array_lengthof(T (&)[N
]) {
39 void testNonTypeTemplateInstantiation() {
40 const char *S
[] = { "a", "b" };
41 clang_analyzer_eval(array_lengthof(S
) == 2);
43 // expected-warning@-2 {{TRUE}}
45 // expected-warning@-4 {{UNKNOWN}}
49 namespace rdar13954714
{
51 bool blockInTemplate() {
57 // force instantiation
58 template bool blockInTemplate
<true>();
61 void blockWithStatic() {
68 // force instantiation
69 template void blockWithStatic
<true>();