blob: 90f82abe1c36ba6edd623f185d747e5a0dc1e5e3 (
plain) (
blame)
1
2
3
4
5
6
|
let s = "foo ${builtins.substring 33 100 (baseNameOf "${./evalstore-okay-context.nix}")} bar";
in
if s != "foo evalstore-okay-context.nix bar"
then abort "context not discarded"
else builtins.unsafeDiscardStringContext s
|