================
@@ -8,3 +8,12 @@ struct Box {
 
 using FloatBox = Box<float>;
 using IntBox = Box<int>;
+
+template <typename T>
+struct MoveOnly {
----------------
Xazax-hun wrote:

Could you add a test case with explicit template specialization?

```
template <>
struct MoveOnly<float> {
  double value;
};
```

What is the behavior in this case?

https://github.com/llvm/llvm-project/pull/173386
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to