bolt/deps/llvm-18.1.8/clang/test/SemaCXX/new-delete-array.cpp
2025-02-14 19:21:04 +01:00

9 lines
414 B
C++

// RUN: %clang_cc1 -fsyntax-only -std=c++17 %s -verify=cxx17
// RUN: %clang_cc1 -fsyntax-only -std=c++14 %s -verify=cxx14
namespace PR51547 {
template<class> struct A; // cxx14-note {{template is declared here}}
auto p = new A[]{}; // cxx14-error {{use of class template 'A' requires template arguments}} \
cxx17-error {{cannot form array of deduced class template specialization type}}
}