1
0
mirror of https://github.com/waku-org/nwaku.git synced 2025-02-18 18:06:28 +00:00

13 lines
155 B
Nim

import chronicles
func main =
trace "effect-free"
main()
# issue #92
proc test() {.raises: [Defect].} =
error "should not raises exception"
test()