mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
13 lines
155 B
Nim
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()
|