567 B
567 B
args
| args | ||||
|---|---|---|---|---|
|
Enter debugger with debugger-on-warn set.
let inspect = v: builtins.warn "inspect is deprecated" (throw "this happens after"); in inspect { }
warning: inspect is deprecated
warning: builtins.warn reached
Added 2 variables.
Continue after the warn then breaks on the throw
:c
error: this happens after
Added 2 variables.
Finally, continue after that error exits and prints the error
:c
error: this happens after