// Test that we can successfully compile this code, especially under ASAN.// RUN: %clang_cc1 -verify -std=c++20 -fsyntax-only %s// expected-no-diagnosticsstruct Foo {
Foo* f;operatorbool()const{return true; }};constexpr Foo f((Foo[]){});intfoo() {if(Foo(*f.f))return1;return0;}