blob: 141bbc38ec118f51134a1e0516f93ba411b51eff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
let
noContext = (builtins.toFile "foo" "bar");
someContext = (builtins.toFile "foo" "bar${noContext}");
moreContext = (builtins.toFile "foo" "bar${someContext}");
in
[
noContext
someContext
moreContext
(builtins.getContext moreContext)
]
|