polserver/testsuite/escript/classes/duplicate-defined-method-function.src

8 lines
134 B
Text
Raw Permalink Normal View History

class Foo()
function Foo( this ) endfunction
function bar( this ) endfunction
function bar( this ) endfunction
endclass
Foo();