summaryrefslogtreecommitdiffstats
path: root/clang/test/CXX/expr/expr.unary/expr.new/p2-cxx1z.cpp
blob: 6e76075ab16f5aed56f872ab35340bf9f5c22227 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++14
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++17 -pedantic

void f() {
  new auto('a');
  new auto {2};
  new auto {1, 2}; // 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 decltype(auto)({1});
  new decltype(auto)({1, 2}); // expected-error{{new expression for type 'decltype(auto)' contains multiple constructor arguments}}
}
OpenPOWER on IntegriCloud