Lines Matching refs:U
73 struct U { struct
74 U() = default;
75 U(U&&) = default;
76 U(const U&) = default;
89 static_assert(__is_literal_type(U), "");
92 static_assert(__is_literal_type(S<U>), "");
97 friend constexpr U::U() noexcept;
98 friend constexpr U::U(U&&) noexcept;
99 friend constexpr U::U(const U&) noexcept;
106 friend constexpr S<U>::S() noexcept;
107 friend constexpr S<U>::S(S<U>&&) noexcept;
108 friend constexpr S<U>::S(const S<U>&) noexcept;