tests(f2/repl): migrate builtins_warn.test

Change-Id: Iaed1fb8651840b855ec7bdf5087681dc5eb9d54c
This commit is contained in:
rootile
2026-06-09 19:40:07 +02:00
parent 99175779c4
commit ab149a6cd8
3 changed files with 37 additions and 14 deletions
@@ -1,13 +0,0 @@
@args --debugger --option debugger-on-warn true
Enter debugger with debugger-on-warn set.
nix-repl> let inspect = v: builtins.warn "inspect is deprecated" (throw "this happens after"); in inspect { }
warning: inspect is deprecated
warning: builtins.warn reached
Continuing after the warn then breaks on the `throw`
nix-repl> :c
error: this happens after
Finally, continuing after that error exits and prints the error
nix-repl> :c
error: this happens after