about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-thunked-string-interpolation.nix
blob: bd3555bb2412fa4218689066b3152f8e59996c50 (plain) (blame)
1
2
3
4
5
6
7
let
  final = { text = "strict literal"; inherit x y; };
  x = "lazy ${throw "interpolation"}";
  y = "${throw "also lazy!"}";
in

final.text