summary refs log tree commit diff
path: root/tests/pracownia4/pracownia3/041_assign_index0.xi
blob: f1c39b6cd60a1899c33b03d5489841f14f426090 (plain) (blame)
1
2
3
4
5
6
7
8
9
main():int
{
    x:int[] = {5, 10, 15}
    x[0] = 20
    return x[0]
}

//@PRACOWNIA
//@out Exit code: 20