class Foo { __init__() { print("init"); return; print("nope"); } } var foo = Foo(); # expect: init print(foo.__init__()); # expect: init # expect: