Add missing static member to testcase

This commit is contained in:
William S Fulton 2013-01-24 20:17:52 +00:00
commit 556e646972

View file

@ -36,9 +36,10 @@ struct Thingy {
rvalref = rhs.rvalref;
}
private:
static const bool PrivateTrue = true;
static const bool PrivateTrue;
Thingy();
};
const bool Thingy::PrivateTrue = true;
short && globalRvalueInOut(short &&i) { return std::move(i); }