diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-02-20 03:19:35 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-02-20 03:19:35 +0000 |
commit | 30482bc78659a3bf2bc8515bff417bc9887e9349 (patch) | |
tree | b4b027ed95b4cb5438999e65259a7b1970e3800d /clang/test/CXX/expr/expr.unary/expr.new/p2-cxx0x.cpp | |
parent | ba1186c23e31207c2e11866beb978bd966a45e19 (diff) | |
download | bcm5719-llvm-30482bc78659a3bf2bc8515bff417bc9887e9349.tar.gz bcm5719-llvm-30482bc78659a3bf2bc8515bff417bc9887e9349.zip |
Implement the C++0x deduced 'auto' feature.
This fixes PR 8738, 9060 and 9132.
llvm-svn: 126069
Diffstat (limited to 'clang/test/CXX/expr/expr.unary/expr.new/p2-cxx0x.cpp')
-rw-r--r-- | clang/test/CXX/expr/expr.unary/expr.new/p2-cxx0x.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/clang/test/CXX/expr/expr.unary/expr.new/p2-cxx0x.cpp b/clang/test/CXX/expr/expr.unary/expr.new/p2-cxx0x.cpp new file mode 100644 index 00000000000..c9a8887d264 --- /dev/null +++ b/clang/test/CXX/expr/expr.unary/expr.new/p2-cxx0x.cpp @@ -0,0 +1,23 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x + +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); + + new auto; // expected-error{{new expression for type 'auto' requires a constructor argument}} + new (const auto)(); // expected-error{{new expression for type 'auto const' requires a constructor argument}} + 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; +} |