mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
224 B
Text
14 lines
224 B
Text
// Cannot create a reference to the super() function.
|
|
|
|
class BaseClass()
|
|
function BaseClass( this )
|
|
endfunction
|
|
endclass
|
|
|
|
class Foo( BaseClass )
|
|
function Foo( this )
|
|
print( @super );
|
|
endfunction
|
|
endclass
|
|
|
|
Foo();
|