Lines Matching refs:ok
54 // These are OK, because value-initialization doesn't actually invoke the276 struct OK {277 OK() = default;278 OK(const OK&) = default;279 OK(int) { }282 OK ok;283 OK ok2{ok};325 S s2 = {s1}; // ok, not list-initialization so we pick the non-explicit constructor342 char s[4]{"abc"}; // Ok