C0070 Compiler Error
Message text
Mixing array and non-array in assignment statement.
Explanation
With the following variables declared as instance variables:
|
1 2 |
int ii_arr[2] int ii_b |
this script in a function generates C0070:
|
1 2 3 4 5 6 7 |
int li_arr[4] = {0, 1, 2, 3} // ok int li_a = {0, 1, 2, 3} // generates C0070 this.ii_arr = {1,2} // ok this.ii_b = {1,2} // generates C0070 int li_brr[3] li_brr = {4,5,6} // ok int li_bli_b = {4,5,6} // generates C0070 |
Document get from Powerbuilder help
Thank you for watching.
Subscribe
Login
0 Comments
Oldest