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