1int main(int argc, const char *argv[]) {
2 struct MatrixData data = {0};
3 data.section.origin.row = 1;
4 data.section.origin.col = 2;
5 data.section.size.row = 3;
6 data.section.size.col = 4;
7 data.stride = 5;
8
9 return data.section.size.row;
10}
11

source code of lldb/test/API/lang/cpp/gmodules/pch-chain/main.cpp