summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/main.cpp
blob: df752616570062812d9fb6386f5dfd8b8edc2684 (plain) (blame)
1
2
3
4
5
6
7
8
9
#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')
}