diff options
Diffstat (limited to 'Examples/ExampleCPlusPlus.cxx')
| -rw-r--r-- | Examples/ExampleCPlusPlus.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Examples/ExampleCPlusPlus.cxx b/Examples/ExampleCPlusPlus.cxx new file mode 100644 index 0000000..38bf0c5 --- /dev/null +++ b/Examples/ExampleCPlusPlus.cxx @@ -0,0 +1,11 @@ +int main(int argc, char const *argv[]) +{ + struct ExampleCPlusPlus + { + int example_data; + }* example; + + example->example_data = 0; + + return 0; +} |
