blob: ca333c2e2874e820f4574f3e490848cff0f79c60 [file] [log] [blame]
// PR c++/59296
// { dg-do compile { target c++11 } }
struct Type
{
void get() const& { }
void get() const&& { }
};
int main()
{
Type{}.get();
}