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