Searched refs:HasCtorDtor (Results 1 – 2 of 2) sorted by relevance
32 struct HasCtorDtor { struct33 HasCtorDtor(int x, int y);34 ~HasCtorDtor();60 (void)(HasCtorDtor){1, 2}; in test()
94 struct HasCtorDtor { struct95 HasCtorDtor(int x, int y) : x(x), y(y) {} in HasCtorDtor() function96 ~HasCtorDtor();109 clang_analyzer_eval(((HasCtorDtor){1, 42}).y == 42); // expected-warning{{UNKNOWN}} in test()