Skip to content

Commit

Permalink
Added reproduction for #136 & added a short TODO.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vdka committed Mar 29, 2018
1 parent 87857be commit ef02417
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/bugs/open/issue136.kai
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

main :: fn() -> void {
err := false
err := false
}

11 changes: 11 additions & 0 deletions docs/TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

# Misc
- When assertions fail recurse down the expr and print values

- Allow contextual enum member lookup
turn:
Mmap(nil, 4 * 1024 * 1024, prot: sys.Prot.READ | sys.Prot.WRITE, flags: sys.MapFlags.FILE | sys.MapFlags.SHARED, fd, offset: 0)

into:
Mmap(nil, 4 * 1024 * 1024, prot: READ | WRITE, flags: FILE | SHARED, fd, offset: 0)

0 comments on commit ef02417

Please sign in to comment.