about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-toplevel-finaliser.nix
blob: 4c6884bec3df3903e9ae88067f2dbc849c937a33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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;
}