Re: [Gambas-user] Nasty bug in With instruction!

2009-04-18 Thread Jussi Lahtinen
Some more testing... With this code: With tmp .y = 0 tmp = funcx() With tmp ' Extra with instruction. Debug .y Debug tmp.y End With End With Or with this: With tmp .y = 0 funcx2(tmp) ' By reference (unfortunately this solution doesn't fit to my code). Debug .y

[Gambas-user] Nasty bug in With instruction!

2009-04-16 Thread Jussi Lahtinen
Hi! Confirmed on Gambas2 and Gambas3. Code: Dim tmp As New Class1 With tmp .y = 0 tmp = funcx() Debug .y Debug tmp.y End With Public Function funcx() As Class1 Dim test As New Class1 test.y = 1 Return test End Output of debug is; 0 1 I think .y and tmp.y should be same! Regards,