aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/ref-qual-multi-neg.C
blob: 5be89423f031cc32383c6b21aa2876ff8da3fe2d (plain)
1
2
3
4
5
6
7
// { dg-require-effective-target c++11 }

class Foo
{
public:
  void bar() const && & { }  // { dg-error "multiple ref-qualifiers" }
};