diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-08-12 02:21:25 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-08-12 02:21:25 +0000 |
| commit | 7b76d81bdf82578757e462dc9bf26da197f70372 (patch) | |
| tree | 7b5aa76811ee56c9e4070f40f6ce0f1506f71d13 /clang/test | |
| parent | e43e26395739bb91b1a581dc3b19063ebd82689d (diff) | |
| download | bcm5719-llvm-7b76d81bdf82578757e462dc9bf26da197f70372.tar.gz bcm5719-llvm-7b76d81bdf82578757e462dc9bf26da197f70372.zip | |
P0217R3: serialization/deserialization support for c++17 decomposition declarations.
llvm-svn: 278460
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/PCH/cxx1z-decomposition.cpp | 32 | ||||
| -rw-r--r-- | clang/test/SemaCXX/cxx1z-decomposition.cpp | 1 |
2 files changed, 32 insertions, 1 deletions
diff --git a/clang/test/PCH/cxx1z-decomposition.cpp b/clang/test/PCH/cxx1z-decomposition.cpp new file mode 100644 index 00000000000..e033577162a --- /dev/null +++ b/clang/test/PCH/cxx1z-decomposition.cpp @@ -0,0 +1,32 @@ +// No PCH: +// RUN: %clang_cc1 -pedantic -std=c++1z -include %s -verify %s +// +// With PCH: +// RUN: %clang_cc1 -pedantic -std=c++1z -emit-pch %s -o %t +// RUN: %clang_cc1 -pedantic -std=c++1z -include-pch %t -verify %s + +#ifndef HEADER +#define HEADER + +template<typename T> auto decomp(const T &t) { + auto &[a, b] = t; + return a + b; +} + +struct Q { int a, b; }; +constexpr int foo(Q &&q) { + auto &[a, b] = q; + return a * 10 + b; +} + +#else + +int arr[2]; +int k = decomp(arr); + +static_assert(foo({1, 2}) == 12); + +// expected-error@12 {{cannot decompose non-class, non-array type 'const int'}} +int z = decomp(10); // expected-note {{instantiation of}} + +#endif diff --git a/clang/test/SemaCXX/cxx1z-decomposition.cpp b/clang/test/SemaCXX/cxx1z-decomposition.cpp index 22d48b3ca89..9bb8eeca504 100644 --- a/clang/test/SemaCXX/cxx1z-decomposition.cpp +++ b/clang/test/SemaCXX/cxx1z-decomposition.cpp @@ -38,5 +38,4 @@ constexpr bool g(S &&s) { static_assert(g({1, 2})); // FIXME: by-value array copies -// FIXME: ast file support // FIXME: code generation |

