Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / functionTo / wrong-type.nix
blobfd65b75088dae61dc10a21234b304af17579e359
2 { lib, config, ... }:
3 let
4   inherit (lib) types;
5 in {
6   options = {
7     fun = lib.mkOption {
8       type = types.functionTo types.str;
9     };
11     result = lib.mkOption {
12       type = types.str;
13       default = config.fun 0;
14     };
15   };
17   config.fun = input: input + 1;