diff options
author | Nikola Smiljanic <popizdeh@gmail.com> | 2014-07-01 04:17:53 +0000 |
---|---|---|
committer | Nikola Smiljanic <popizdeh@gmail.com> | 2014-07-01 04:17:53 +0000 |
commit | 3fe1e09a6e285a4792224969b582ada1bd6747f8 (patch) | |
tree | dbeabf1d47e710f355cbc56f42f50e56feb42649 /clang/test/Misc/diag-template-diffing.cpp | |
parent | c8caa1702a743b67d15db444e1817a55ca0fb0a3 (diff) | |
download | bcm5719-llvm-3fe1e09a6e285a4792224969b582ada1bd6747f8.tar.gz bcm5719-llvm-3fe1e09a6e285a4792224969b582ada1bd6747f8.zip |
PR15677 - Crash in template diffing. Check that expression is evaluatable before evaluating it.
llvm-svn: 212090
Diffstat (limited to 'clang/test/Misc/diag-template-diffing.cpp')
-rw-r--r-- | clang/test/Misc/diag-template-diffing.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/clang/test/Misc/diag-template-diffing.cpp b/clang/test/Misc/diag-template-diffing.cpp index 46807070c7c..c43ed263c69 100644 --- a/clang/test/Misc/diag-template-diffing.cpp +++ b/clang/test/Misc/diag-template-diffing.cpp @@ -1068,6 +1068,43 @@ void foo() { } } +namespace PR15677 { +template <bool> +struct A{}; + +template <typename T> +using B = A<T::value>; + +template <typename T> +using B = A<!T::value>; +// CHECK-ELIDE-NOTREE: type alias template redefinition with different types ('A<!T::value>' vs 'A<T::value>') + +template <int> +struct C{}; + +template <typename T> +using D = C<T::value>; + +template <typename T> +using D = C<T::value + 1>; +// CHECK-ELIDE-NOTREE: type alias template redefinition with different types ('C<T::value + 1>' vs 'C<T::value>') + +template <typename T> +using E = C<T::value>; + +template <typename T> +using E = C<42>; +// CHECK-ELIDE-NOTREE: type alias template redefinition with different types ('C<42>' vs 'C<T::value>') + +template <typename T> +using F = C<T::value>; + +template <typename T> +using F = C<21 + 21>; +// CHECK-ELIDE-NOTREE: type alias template redefinition with different types ('C<21 + 21 aka 42>' vs 'C<T::value>') +} +} + // CHECK-ELIDE-NOTREE: {{[0-9]*}} errors generated. // CHECK-NOELIDE-NOTREE: {{[0-9]*}} errors generated. // CHECK-ELIDE-TREE: {{[0-9]*}} errors generated. |