Dmitry Sobinov
Dmitry Sobinov
## Expected Behavior I expect this program to run without crashing ```c++ int main(int argc, char** argv) { struct e1 {}; struct dependency { int i = 0; }; struct...
## Expected Behavior Ideally, sizeof(sm) of the state machine below to be 9 bytes (this pointer for lambda and one byte to store the current state). ## Actual Behavior sizeof(sm)...
Using `namespace ns1::ns2::ns3 {` instead of `namespace ns1 { namespace ns2 { namespace ns3 {` which slightly simplifies codegen and makes the code conformant with [modernize-concat-nested-namespaces](https://clang.llvm.org/extra/clang-tidy/checks/modernize/concat-nested-namespaces.html) clang-tidy check.