tbaeder added inline comments.
================ Comment at: clang/test/Sema/c2x-bool.c:10 +_Static_assert(_Generic(true, bool : true, default: false)); +_Static_assert(_Generic(false, bool : true, default: false)); + ---------------- Not that clang-format wanted me to format these two lines, but the result was pretty ugly: ``` -_Static_assert(_Generic(true, bool : true, default: false)); -_Static_assert(_Generic(false, bool : true, default: false)); +_Static_assert(_Generic(true, bool + : true, default + : false)); +_Static_assert(_Generic(false, bool + : true, default + : false)); ``` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D120244/new/ https://reviews.llvm.org/D120244 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits