Home | History | Annotate | Download | only in drs

Lines Matching refs:ok

54   // These are OK, because value-initialization doesn't actually invoke the
276 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 constructor
342 char s[4]{"abc"}; // Ok