toit icon indicating copy to clipboard operation
toit copied to clipboard

Return type of interfaces isn't checked correctly

Open floitsch opened this issue 3 years ago • 0 comments

The following example doesn't yield any error:

interface A:
  foo -> int
  
class B implements A:
  foo -> string:
    return ""

floitsch avatar Dec 07 '22 20:12 floitsch