diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-09 16:14:31 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-09 16:14:31 +0200 |
commit | 69ef9d69fbc33627c5de2a0dddf3d23213a753d4 (patch) | |
tree | 4ed7cd91daf78d402f0798c580b05da15c38309f /BUGS | |
parent | 674bce8c96309ae7c38a7e2b946f3f18430a0b00 (diff) |
Document bug
Diffstat (limited to 'BUGS')
-rw-r--r-- | BUGS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -20,3 +20,11 @@ 2. Recursive functions crash the compiler. foo :: () { return foo(); } /* breaks */ + +3. The following example function has a use-after-free for a yet + undiagnosed reason: + + iota :: () int { + x: int = -1; + return x; + } |