elena-lang icon indicating copy to clipboard operation
elena-lang copied to clipboard

Multimethod with unresolved message - The code is never finished

Open arakov opened this issue 3 years ago • 0 comments

Describe the bug The code is never finished

To Reproduce

  import system'text;
  
  public program()
  {
      int n := 3;
      
      byte tmp[16];
      char ch_tmp[16];
      int  len := 16;
      
      stringConvertor.convert(n, tmp, ref len);
      
      UTF8Encoder.convert(0, ref len, tmp, ch_tmp, ref len);
  }

Expected behavior MethodNotFoundException should be raised

arakov avatar May 28 '21 08:05 arakov