This test is flaky on GreenDragon. Since it was a pexpect test and straightforward enough to convert, I went ahead and converted it to a lit test. Differential revision: https://reviews.llvm.org/D61414 llvm-svn: 359751
14 lines
212 B
C++
14 lines
212 B
C++
#include <stdio.h>
|
|
|
|
int main (int argc, char const *argv[])
|
|
{
|
|
struct {
|
|
int a;
|
|
int b;
|
|
int c;
|
|
} MyAggregateDataType;
|
|
|
|
printf ("Set break point at this line.\n");
|
|
return 0;
|
|
}
|