mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

2.8K
active users

#plt

6 posts6 participants0 posts today

I'm currently implementing the tree borrows paper for schmu. So far 22 of our 65 borrowing unit tests are passing.

I also found out that the current schmu borrow checker is overly strict at times. Code like this
```
let y& = 10
let z& = &y
ignore(y)
z
```

does not type check in schmu because binding `y` is used while it's still borrowed to `z`.
In tree borrows (and Rust) this typechecks because no harm is done if we're only reading and not writing.