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