1 // RUN: clang-import-test -import %S/Inputs/S.cpp -expression %s
expr()2 void expr() {
3   S MyS;
4   int b = MyS.a + MyS.a;
5 }
6