[PATCH] D156307: [clang][DeclPrinter] Fix AST print of curly constructor initializers
Shafik Yaghmour via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 26 11:21:01 PDT 2023
shafik added a comment.
Maybe add a designated init test in there as well e.g.
struct A {
int x {};
};
struct B {
B() : a({.x = 1}) {
}
A a;
};
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D156307/new/
https://reviews.llvm.org/D156307
More information about the cfe-commits
mailing list