In policy spec, forbid "none" as a group member?
The policy spec says `Witnesses and groups share a single namespace, and the special name none is predefined.`.
The way this is implemented implies that the "none" group can be used as a group member. Like
```
log ...
witness W ...
group G all W none
quorum G
```
This is not particularly useful. Consider disallowing this usage, saying that the only valid way to reference the none name is in the quorum line, `quorum none`.
issue