1 // RUN: clang-import-test -import %S/Inputs/T.cpp -expression %s
2 // XFAIL: *
3 void expr() {
4   A<int>::B b1;
5   A<bool>::B b2;
6   b1.f + b2.g;
7 }
8