summaryrefslogtreecommitdiffhomepage
path: root/Examples/ExampleCPlusPlus.cxx
blob: 38bf0c545a93dc1e23040f688264c3b8f1114ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
int main(int argc, char const *argv[])
{
    struct ExampleCPlusPlus
    {
        int example_data;
    }* example;

    example->example_data = 0;

    return 0;
}