Searched refs:HasCtor (Results 1 – 5 of 5) sorted by relevance
15 struct HasCtor { HasCtor(); int x; }; struct17 __declspec(thread) HasCtor f;19 __declspec(thread) HasCtor f; // expected-error {{must be a constant expression}} expected-note {{t…26 __declspec(thread) HasCtor g; // expected-error {{must be a constant expression}} expected-note {{t…
25 struct HasCtor { struct26 HasCtor(int x, int y);63 (void)(HasCtor){1, 2}; in test()
124 struct HasCtor { struct125 HasCtor();127 __thread HasCtor var_with_ctor; // thread-local-warning {{'_Thread_local' is a C11 extension}}
5 class HasCtor {6 HasCtor(void *) {}
108 struct HasCtor { struct109 HasCtor(int x, int y) : x(x), y(y) {} in HasCtor() argument127 clang_analyzer_eval(((HasCtor){1, 42}).y == 42); // expected-warning{{TRUE}} in test()