GitNexus/gitnexus/test/fixtures/lang-resolution/cpp-adl-rvalue-ref/app.cpp

9 lines
158 B
C++

#include "audit.h"
namespace app {
void runRvalueRef() {
audit::Event e;
audit::Event&& rr = static_cast<audit::Event&&>(e);
record(rr);
}
}