about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-access-strange-identifier.nix
blob: 433f53dc563ce50e97c322570b02302391951c44 (plain) (blame)
1
2
3
4
5
6
7
8
9
let
  # There is no syntax for accessing this identifier in an ordinary
  # way.
  "foo bar" = 42;
in
({
  # but we *can* inherit it back out
  inherit "foo bar";
})."foo bar"