Clang Project

clang_source_code/test/CXX/special/class.ctor/p4-0x.cpp
1// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
2
3// A constructor shall not be declared with a ref-qualifier.
4struct X {
5  X() &; // expected-error{{ref-qualifier '&' is not allowed on a constructor}}
6  X(int) &&; // expected-error{{ref-qualifier '&&' is not allowed on a constructor}}
7};
8