This is in preparation for adding more gmodules tests. Differential Revision: https://reviews.llvm.org/D133876
9 lines
151 B
C++
9 lines
151 B
C++
class Foo::Bar { int i = 123; };
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
IntContainer test(42);
|
|
Foo::Bar bar;
|
|
return 0; // break here
|
|
}
|