about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-lazy-assert.nix
blob: 5a36964976ca9deb551d7d794a76436b9b223d79 (plain) (blame)
1
2
3
4
5
6
7
8
assert true;

let
  x = assert false; 13;
  y = 12;
in

{ inherit x y; }.y