-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/lang/eval-fail-bad-string-interpolation-4: init
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
tests/functional/lang/eval-fail-bad-string-interpolation-4.err.exp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
error: | ||
… while evaluating a path segment | ||
|
||
at /pwd/lang/eval-fail-bad-string-interpolation-4.nix:7:3: | ||
|
||
6| in | ||
7| ''${pkgs}'' | ||
| ^ | ||
8| | ||
|
||
error: cannot coerce a set to a string |
8 changes: 8 additions & 0 deletions
8
tests/functional/lang/eval-fail-bad-string-interpolation-4.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
let | ||
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; }; | ||
# A large structure that has already been evaluated, with a few unevaluated parts. | ||
pkgs = builtins.deepSeq has has; | ||
has = ha (ha (ha (ha (x: x)))) "ha"; | ||
in | ||
# The error message should not be too long. | ||
''${pkgs}'' |