about summary refs log tree commit diff
path: root/tests/lang/eval-okay-good-value.nix
blob: 5dfc6d85e93c2afdbc12f662b3181f664bdf794b (plain) (blame)
1
2
3
4
5
6
7
let {

  f = {x, y : ["baz" "bar" "bat"]}: x + y;

  body = f {x = "foo"; y = "bar";};

}