class Test(ITest):
def Method(x as string) as string:
pass
t = Test()
This compiles successfully, and obviously fail at runtime with a TypeLoadException.
Description
interface ITest:
def Method() as string:
pass
class Test(ITest):
def Method(x as string) as string:
pass
t = Test()
This compiles successfully, and obviously fail at runtime with a TypeLoadException.