aboutsummaryrefslogtreecommitdiff
path: root/tests/lang/eval-fail-blackhole.err.exp
blob: f0618d8ac7d2e541635e20a07c30e1819c845092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error:
       … while evaluating the attribute 'body'

         at /pwd/lang/eval-fail-blackhole.nix:2:3:

            1| let {
            2|   body = x;
             |   ^
            3|   x = y;

       error: infinite recursion encountered

       at /pwd/lang/eval-fail-blackhole.nix:3:7:

            2|   body = x;
            3|   x = y;
             |       ^
            4|   y = x;