Searched refs:HasCtor (Results 1 – 4 of 4) sorted by relevance
25 struct HasCtor { struct26 HasCtor(int x, int y);53 (void)(HasCtor){1, 2}; in test()
10 struct HasCtor { HasCtor(); int x; }; struct11 __declspec(thread) HasCtor f; // expected-error {{must be a constant expression}} expected-note {{t…
111 struct HasCtor { struct112 HasCtor();114 __thread HasCtor var_with_ctor;
86 struct HasCtor { struct87 HasCtor(int x, int y) : x(x), y(y) {} in HasCtor() argument105 clang_analyzer_eval(((HasCtor){1, 42}).y == 42); // expected-warning{{TRUE}} in test()