aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-fail-blackhole.err.exp
blob: 95e33a5fe456d2561ea0fdf3c51db824854393e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;