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

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