I just wondered, why a not defined function in a class does not come up with a MsgBox like "Call to nonexistent function."
Example code:
#Warn
t := new test
t.func1()
t.func2() ; no error
func1()
func2() ; error
class test {
func1() {
msgbox bla
}
}
func1() {
msgbox bli
}Is this intented behavior or is there something wrong?Regards, nfl




