toit icon indicating copy to clipboard operation
toit copied to clipboard

Try/finally not counted as definite assignment

Open floitsch opened this issue 8 months ago • 4 comments

The following program yields an error:

class A:
  foo/int

  constructor:
    try:
      foo = 499
    finally:
      print "done"
ᐅ toit analyze /tmp/t.toit
/tmp/t.toit:4:3: error: Field 'foo' not initialized on all paths in constructor
  constructor:
  ^~~~~~~~~~~

floitsch avatar Mar 31 '25 14:03 floitsch