about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-inherit-string-ident.nix
blob: dde81e5a7c30d458e9fc8a947ba2a70338b71ee1 (plain) (blame)
1
2
3
4
5
6
7
# identifiers in inherits can be string-like expressions

let
  set = {
    inherit ({ value = 42; }) "value";
  };
in set.value