1# freeeformType should have been (attrsOf either) 2# This should also print the warning 3{ 4 config.either = { 5 int = 42; 6 }; 7 8 config.eitherBehindNullor = { 9 int = 42; 10 }; 11 12 config.oneOf = { 13 int = 42; 14 }; 15 16 config.number = { 17 str = 42; 18 }; 19}