================ @@ -0,0 +1,10 @@ +// RUN: %clang_cc1 -triple x86_64-linux-gnu %s + +bool a; +constexpr const unsigned char c[] = { 5 }; +constexpr const unsigned char d[1] = { 0 }; +auto b = (a ? d : c); + +constexpr const unsigned char c1[][1] = {{ 5 }}; +constexpr const unsigned char d1[1][1] = {{ 0 }}; +auto b1 = (a ? d1 : c1); ---------------- mizvekov wrote:
Please move this test to `clang/test/SemaCXX/sugar-common-types.cpp`, adjusting according to the function and style of that file. Ie we want to make sure the inner sugar is preserved in the output. https://github.com/llvm/llvm-project/pull/131649 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits