mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 04:09:03 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D4210 --HG-- extra : moz-landing-system : lando
4 lines
46 B
C++
4 lines
46 B
C++
class A {
|
|
A(A &&);
|
|
A &operator=(A &&);
|
|
};
|