about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/eval-fail-assert.nix
let {
  x = arg: assert arg == "y"; 123;

  body = x "x";
}