source:
CIVL/mods/dev.civl.com/examples/languageFeatures/functionRetStruct.cvl@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 115 bytes | |
| Rev | Line | |
|---|---|---|
| [d1dc05a] | 1 | struct B { |
| 2 | int x; | |
| 3 | } foo() { | |
| 4 | struct B b; | |
| 5 | ||
| 6 | return b; | |
| 7 | } | |
| 8 | ||
| 9 | ||
| 10 | int main(){ | |
| 11 | struct B x = foo(); | |
| 12 | return x.x; | |
| 13 | } | |
| 14 |
Note:
See TracBrowser
for help on using the repository browser.
