DEBSOURCES
Skip Quicknav
sources / llvm-toolchain-6.0 / 1%3A6.0.1-10 / clang / test / Import / local-struct-use-origins / Inputs / Callee.cpp
123456789101112
struct Bar { void bar(int _a, bool _b) { { struct S { int a; }; S s = { _a }; } { struct S { bool b; }; S t = { _b }; } }; };