Searched defs:LitType (Results 1 – 1 of 1) sorted by relevance
20 struct LitType { struct21 constexpr LitType() : value(0) {} in LitType() argument22 constexpr LitType(int x) : value(x) {} in LitType() function23 LitType(void *) : value(-1) {} // expected-note 0+ {{declared here}} in LitType() function24 int value;