You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
10 lines
391 B
C++
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')
|
||
|
|
}
|