Files
clang-p2996/lldb/test/API/lang/cpp/gmodules/templates/main.cpp
Michael Buch 3b44c9af8e [lldb][tests] Move C++ gmodules tests into new gmodules/ subdirectory
This is in preparation for adding more gmodules
tests.

Differential Revision: https://reviews.llvm.org/D133876
2022-09-14 14:45:35 -04:00

10 lines
391 B
C++

#include "b.h"
int main(int argc, const char * argv[])
{
Module m;
// Test that the type Module which contains a field that is a
// template instantiation can be fully resolved.
return 0; //% self.assertTrue(self.frame().FindVariable('m').GetChildAtIndex(0).GetChildAtIndex(0).GetChildAtIndex(0).GetName() == 'buffer', 'find template specializations in imported modules')
}