about summary refs log tree commit diff
path: root/tvix/eval/src/tests/nix_tests/eval-okay-flatten.nix
blob: fe911e9683e293f0e9a1dd051e2d81af8770e55c (plain) (blame)
1
2
3
4
5
6
7
8
with import ./lib.nix;

let {

  l = ["1" "2" ["3" ["4"] ["5" "6"]] "7"];

  body = concat (flatten l);
}