mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
15 lines
381 B
Bash
Executable file
15 lines
381 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
clearStoreIfPossible
|
|
|
|
# regression #9932
|
|
echo ":env" | expect 1 nix eval --debugger --expr '(_: throw "oh snap") 42'
|
|
echo ":env" | expect 1 nix eval --debugger --expr '
|
|
let x.a = 1; in
|
|
with x;
|
|
(_: builtins.seq x.a (throw "oh snap")) x.a
|
|
' >debugger-test-out
|
|
grep -P 'with: .*a' debugger-test-out
|
|
grep -P 'static: .*x' debugger-test-out
|