1{ lib, ... }:
2let
3 inherit (lib) mkOption;
4in
5{
6 wrong1 = mkOption {
7 };
8 # This is not actually reported separately, so could be omitted from the test
9 # but it makes the example more realistic.
10 # Making it parse this _config_ as options would too risky. What if it's not
11 # options but other values, that abort, throw, diverge, etc?
12 nest.wrong2 = mkOption {
13 };
14}