1*9ca5c425SRichard Smith // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s 2db9d6642SDouglas Gregor 3db9d6642SDouglas Gregor // A constructor shall not be declared with a ref-qualifier. 4db9d6642SDouglas Gregor struct X { 5db9d6642SDouglas Gregor X() &; // expected-error{{ref-qualifier '&' is not allowed on a constructor}} 6db9d6642SDouglas Gregor X(int) &&; // expected-error{{ref-qualifier '&&' is not allowed on a constructor}} 7db9d6642SDouglas Gregor }; 8