<div dir="ltr">Hi,<div><br></div><div>I am puzzling with the following phenomenon:</div><div>When I compile a source file normally (i.e. -c) then a given lambda's signature is `operator() 'int_type (long) const'` where int_type is a TypeAlias. I.e. the return type is a TypedefType.</div><div>Now, when I compile the same source file with -E, then the signature is changed to the canonical type: `operator() 'long (long) const'`. I.e. the return type is no longer a TypedefType.</div><div>This happens also when I use `-E -frewrite-includes`.</div><div><br></div><div>Do you guys have any insights on this? What happens during include expansion so that the parser changes some internal state?</div><div><br></div><div>Thanks,</div><div>Gabor</div><div><br></div><div>...</div><div><br></div><div>Why this is a problem to me? Because I can't write tests that are self-contained, the problematic AST with the TypedefType return type comes up only when we include some files.</div><div><br></div><div>For your interest, if you want to reproduce it, you can do that on llvm-project/master:</div><div>1) Enable libcxx, libcxxabi</div><div>2) ninja cxx</div><div>3) ninja -v projects/libcxx/src/CMakeFiles/cxx_static.dir/filesystem/directory_iterator.cpp.o</div><div>    - grab the output and attach -E (and -frewrite-includes)</div><div>4) ./bin/clang-check -p . libcxx/src/filesystem/directory_iterator.cpp -ast-dump -ast-dump-filter "posix_utimes" | ag "CXXMethodDecl.*int_type"</div><div>   - gives -CXXMethodDecl 0x3007ec0 <col:30, line:400:3> line:396:18 used operator() 'int_type (long) const' inline</div><div>5) ./bin/clang -x c++ directory_iterator.cpp.E -fsyntax-only -Xclang -ast-dump -Xclang -ast-dump-filter -Xclang posix_utimes | ag "CXXMethodDecl.*operator"</div><div>6) -CXXMethodDecl 0x31c6ad0 <col:30, line:400:3> line:396:18 used operator() 'long (long) const' inline</div></div>