Yes, but there is little use, since constructors and destructors cannot be ref-qual.
You can ref-qualify assignment statements:
struct S { S &operator=(const S &) && = default; }; int main() { S s; S() = s;
However, I am a little at a loss to imagine what this would be useful for.
source share