about summary refs log blame commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-nested-thunks.nix
blob: 2519221e977841bea03187575db0b5ed3337b784 (plain) (tree)
1
2
3
4
5
6
7
8





                                                                    

  
# If a thunk yields another thunk, OpForce should keep forcing until
# there is a value.
let
  a = b;
  b = c;
  c = 42;
in
a