Hi, How come the 51 compiler V7.04 cannot compile the following code? typedef struct { int i; } S; S jj(void) { S k; return(k); } S i(void) { return(jj()); } void main(void) { } The compiler gives "illegal type conversion error" in the line "return(jj());" Andy