aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/main.cpp
blob: 2de37041f263a7844497ce378f6d4450ed53c5c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

typedef struct Struct
{
  int one;
  int two;
} Struct;

int
main()
{
  Struct myStruct = {10, 20};
  printf ("Break here: %d\n.", myStruct.one);
  return 0;
}