mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-25 07:16:17 +02:00
tests/lang/eval-fail-bad-string-interpolation-4: init
This commit is contained in:
parent
9b7b7a7561
commit
6e8d598314
2 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
||||||
|
error:
|
||||||
|
… while evaluating a path segment
|
||||||
|
|
||||||
|
at /pwd/lang/eval-fail-bad-string-interpolation-4.nix:9:3:
|
||||||
|
|
||||||
|
8| # The error message should not be too long.
|
||||||
|
9| ''${pkgs}''
|
||||||
|
| ^
|
||||||
|
10|
|
||||||
|
|
||||||
|
error: cannot coerce a set to a string
|
|
@ -0,0 +1,9 @@
|
||||||
|
let
|
||||||
|
# Basically a "billion laughs" attack, but toned down to simulated `pkgs`.
|
||||||
|
ha = x: y: { a = x y; b = x y; c = x y; d = x y; e = x y; f = x y; g = x y; h = x y; j = x y; };
|
||||||
|
has = ha (ha (ha (ha (x: x)))) "ha";
|
||||||
|
# A large structure that has already been evaluated.
|
||||||
|
pkgs = builtins.deepSeq has has;
|
||||||
|
in
|
||||||
|
# The error message should not be too long.
|
||||||
|
''${pkgs}''
|
Loading…
Reference in a new issue