0a8888d1c7
Shows for how long these tests have not been touched by anyone … Change-Id: I3d0c1209a86283ddb012db4e7d45073264fdd0eb
19 lines
160 B
Nix
19 lines
160 B
Nix
let
|
|
|
|
a = "xyzzy";
|
|
|
|
as = {
|
|
a = "foo";
|
|
b = "bar";
|
|
};
|
|
|
|
bs = {
|
|
a = "bar";
|
|
};
|
|
|
|
x = with as; a + b;
|
|
|
|
y = with as; with bs; a + b;
|
|
|
|
in
|
|
x + y
|