blob: 0e622bcacb25f6bc452ad497db3cdd56a482d1a8 [file] [log] [blame]
// { dg-options "--std=c++0x" }
// { dg-do link }
struct T {};
struct S
{
S(T const &) {}
};
void f(const S&);
void f(S&&) {}
int main()
{
T t;
f(t);
}