aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate/value-dependent-null-pointer-constant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaTemplate/value-dependent-null-pointer-constant.cpp')
-rw-r--r--test/SemaTemplate/value-dependent-null-pointer-constant.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/SemaTemplate/value-dependent-null-pointer-constant.cpp b/test/SemaTemplate/value-dependent-null-pointer-constant.cpp
new file mode 100644
index 000000000000..8bde1277edd5
--- /dev/null
+++ b/test/SemaTemplate/value-dependent-null-pointer-constant.cpp
@@ -0,0 +1,29 @@
+// RUN: clang-cc -fsyntax-only %s
+
+template<typename T, int N>
+struct X0 {
+ const char *f0(bool Cond) {
+ return Cond? "honk" : N;
+ }
+
+ const char *f1(bool Cond) {
+ return Cond? N : "honk";
+ }
+
+ bool f2(const char *str) {
+ return str == N;
+ }
+};
+
+// PR4996
+template<unsigned I> int f0() {
+ return __builtin_choose_expr(I, 0, 1);
+}
+
+// PR5041
+struct A { };
+
+template <typename T> void f(T *t)
+{
+ (void)static_cast<void*>(static_cast<A*>(t));
+} \ No newline at end of file