xref: /llvm-project/lldb/test/API/lang/cpp/gmodules/templates/main.cpp (revision 3b44c9af8efd95aba7b4f351e5175ebf02e7b396)
1*3b44c9afSMichael Buch #include "b.h"
2*3b44c9afSMichael Buch 
main(int argc,const char * argv[])3*3b44c9afSMichael Buch int main(int argc, const char * argv[])
4*3b44c9afSMichael Buch {
5*3b44c9afSMichael Buch     Module m;
6*3b44c9afSMichael Buch     // Test that the type Module which contains a field that is a
7*3b44c9afSMichael Buch     // template instantiation can be fully resolved.
8*3b44c9afSMichael Buch     return 0; //% self.assertTrue(self.frame().FindVariable('m').GetChildAtIndex(0).GetChildAtIndex(0).GetChildAtIndex(0).GetName() == 'buffer', 'find template specializations in imported modules')
9*3b44c9afSMichael Buch }
10