about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-thunked-string-interpolation.nix
let
  final = { text = "strict literal"; inherit x y; };
  x = "lazy ${throw "interpolation"}";
  y = "${throw "also lazy!"}";
in

final.text