================
@@ -8,3 +8,17 @@ struct Box {
using FloatBox = Box<float>;
using IntBox = Box<int>;
+
+template <typename T>
+struct MoveOnly {
+ T value;
+};
+
+template <>
+struct MoveOnly<float> {
----------------
Xazax-hun wrote:Could you add a field of this type? https://github.com/llvm/llvm-project/pull/173386 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
