blitz-foundation / monkey2

zlib License
3 stars 0 forks source link

default ctor weirdness... #54

Open Pharmhaus-2 opened 5 years ago

Pharmhaus-2 commented 5 years ago

Original Author: blitz-research

Class A

'   Method New()
'       Print "OOPS!"
'   End

    Method New( test:String="Test" )
        Print "A.New test="+test
    End
End

Class B Extends A
End

Function Main()
    Local b:=New B
d