about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-let-identifiers.nix
blob: b6c37c34f949565a49c7b370524809eb725c5ebc (plain) (blame)
1
2
3
4
5
let
  a = 1;
  "b" = 2;
  ${"c"} = 3;
in [ a b c ]