about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-toplevel-finaliser.nix
blob: 5f25f8067161aa49b2bf98975dd0ef5c783904f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# A simple expression with upvalue resolution beyond the target stack
# index of the root expression.

let
  a = 1;
  b = 2;
  c = 3;
in
{
  inherit a b c;
}