Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / types-anything / attrs-coercible.nix
blob085cbd638f17f104ad979a2eae60ed8e89206898
1 { lib, ... }: {
3   options.value = lib.mkOption {
4     type = lib.types.anything;
5   };
7   config.value = {
8     outPath = "foo";
9     err = throw "err";
10   };