]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/template-specialization/test.cpp
Vendor import of clang trunk r300422:
[FreeBSD/FreeBSD.git] / test / Import / template-specialization / test.cpp
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 }