diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 06:36:36 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:11:25 +0100 |
commit | 2ba978800355189e263aa7fe13277fd62ce743bc (patch) | |
tree | c68b6e852052fe6be14a9c17e3884e3bd1779cf1 /tests/functional/lang/eval-fail-not-throws.err.exp | |
parent | d42cd24afe1ff417a33c769d666cb2af231ca40b (diff) |
Merge pull request #9555 from 9999years/positions-in-errors
Pass positions when evaluating
(cherry picked from commit c8458bd731eb1c74159bebe459ea00165e056b65)
Change-Id: I1b4a5d58973be6264ffdb23b4492da200fdb71be
Diffstat (limited to 'tests/functional/lang/eval-fail-not-throws.err.exp')
-rw-r--r-- | tests/functional/lang/eval-fail-not-throws.err.exp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/functional/lang/eval-fail-not-throws.err.exp b/tests/functional/lang/eval-fail-not-throws.err.exp new file mode 100644 index 000000000..b290afb0a --- /dev/null +++ b/tests/functional/lang/eval-fail-not-throws.err.exp @@ -0,0 +1,18 @@ +error: + … in the argument of the not operator + + at /pwd/lang/eval-fail-not-throws.nix:1:4: + + 1| ! (throw "uh oh!") + | ^ + 2| + + … while calling the 'throw' builtin + + at /pwd/lang/eval-fail-not-throws.nix:1:4: + + 1| ! (throw "uh oh!") + | ^ + 2| + + error: uh oh! |