
Summary: This is a side-effect brought in by p0620r0, which allows other placeholder types (derived from `auto` and `decltype(auto)`) to be usable in a `new` expression with a single-clause //braced-init-list// as its initializer (8.3.4 [expr.new]/2). N3922 defined its semantics. References: http://wg21.link/p0620r0 http://wg21.link/n3922 Reviewers: rsmith, aaron.ballman Reviewed By: rsmith Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D39451 llvm-svn: 320401
28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
|
|
|
|
template<typename T>
|
|
struct only {
|
|
only(T);
|
|
template<typename U> only(U) = delete;
|
|
};
|
|
|
|
void f() {
|
|
only<const int*> p = new const auto (0);
|
|
only<double*> q = new (auto) (0.0);
|
|
only<char*> r = new auto {'a'};
|
|
|
|
new auto; // expected-error{{new expression for type 'auto' requires a constructor argument}}
|
|
new (const auto)(); // expected-error{{new expression for type 'const auto' requires a constructor argument}}
|
|
new (auto) (1,2,3); // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
|
|
new auto {}; // expected-error{{new expression for type 'auto' requires a constructor argument}}
|
|
new auto {1,2,3}; // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
|
|
new auto ({1,2,3}); // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
|
|
}
|
|
|
|
void p2example() {
|
|
only<int*> r = new auto(1);
|
|
auto x = new auto('a');
|
|
|
|
only<char*> testX = x;
|
|
}
|