❯ mojo build hello-world/take_ownership.mojo
/path/to/hello-world/take_ownership.mojo:9:26: error: use of uninitialized value 'x'
print("x = " + String(x) + " and y = " + String(y))
^
/path/to/hello-world/take_ownership.mojo:7:5: note: 'x' declared here
let x = 10
^
mojo: error: failed to run the pass manager
❯ mojo build hello-world/take_ownership.mojo
/path/to/hello-world/take_ownership.mojo:9:26: error: use of uninitialized value 'x'
print("x = " + String(x) + " and y = " + String(y))
^
/path/to/hello-world/take_ownership.mojo:7:5: note: 'x' declared here
let x = 10
^
mojo: error: failed to run the pass manager