Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / expr / expr.unary / expr.new / p2-cxx0x.cpp
blob8f321d800bf9d0e3ca6c5d9e7d55b64a972d54fb
1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
3 template<typename T>
4 struct only {
5 only(T);
6 template<typename U> only(U) = delete;
7 };
9 void f() {
10 only<const int*> p = new const auto (0);
11 only<double*> q = new (auto) (0.0);
12 only<char*> r = new auto {'a'};
14 new auto; // expected-error{{new expression for type 'auto' requires a constructor argument}}
15 new (const auto)(); // expected-error{{new expression for type 'const auto' requires a constructor argument}}
16 new (auto) (1,2,3); // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
17 new auto {}; // expected-error{{new expression for type 'auto' requires a constructor argument}}
18 new auto {1,2,3}; // expected-error{{new expression for type 'auto' contains multiple constructor arguments}}
19 new auto ({1,2,3}); // expected-error{{cannot deduce actual type for 'auto' from parenthesized initializer list}}
22 void p2example() {
23 only<int*> r = new auto(1);
24 auto x = new auto('a');
26 only<char*> testX = x;