about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-access-strange-identifier.nix
blob: 8e282d1280f1a4445e6c18c2cd90727b629e0cbb (plain) (blame)
1
2
3
4
5
6
7
8
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"