1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/arrays-init.cfg

12 lines
211 B
INI
Raw Normal View History

2020-10-05 20:58:02 +00:00
void main()
2020-06-27 19:18:00 +00:00
main: scope:[main] from
2020-10-05 20:58:02 +00:00
[0] *b = 'c'
[1] *SCREEN = *b
[2] *(SCREEN+1) = *(c+1)
[3] *(SCREEN+2) = *(d+2)
to:main::@return
main::@return: scope:[main] from main
2020-06-27 19:18:00 +00:00
[4] return
to:@return