1 // RUN: %clang_cc1 -std=c++26 -fsyntax-only -fcxx-exceptions -verify=ref,both %s
2 // RUN: %clang_cc1 -std=c++26 -fsyntax-only -fcxx-exceptions -verify=expected,both %s -fexperimental-new-constant-interpreter
7 constexpr void* p
= nullptr;
8 constexpr int* q
= static_cast<int*>(p
);
9 static_assert(q
== nullptr);