gambas 2.14
gui qt
Benoît Minisini wrote:
>
>> I found very interesting bug . here how to emulate it (took me a while
>> to
>> trace it)
>>
>> 1 . create 2 module
>>
>> module Mtest1
>>
>> public function test() as boolean
>>
>> error.raise("this is error 1")
>>
>> return true
>> catch
>
> I found very interesting bug . here how to emulate it (took me a while to
> trace it)
>
> 1 . create 2 module
>
> module Mtest1
>
> public function test() as boolean
>
> error.raise("this is error 1")
>
> return true
> catch
> Mtest2.test2(error.text)
> return false
> end
>
> '__
I found very interesting bug . here how to emulate it (took me a while to
trace it)
1 . create 2 module
module Mtest1
public function test() as boolean
error.raise("this is error 1")
return true
catch
Mtest2.test2(error.text)
return false
end
'__
modu