aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-fail-recursion.err.exp
blob: f0057b2d5229797bc4bd65d1854d24cf2778990d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error:
       … while evaluating 'a' to select 'foo' on it
         at /pwd/lang/eval-fail-recursion.nix:1:21:
            1| let a = {} // a; in a.foo
             |                     ^
            2|

       … in the right operand of the update (//) operator
         at /pwd/lang/eval-fail-recursion.nix:1:12:
            1| let a = {} // a; in a.foo
             |            ^
            2|

       error: infinite recursion encountered
       at /pwd/lang/eval-fail-recursion.nix:1:15:
            1| let a = {} // a; in a.foo
             |               ^
            2|