# Unknown "Warning Group" Warnings (`UnknownWarningGroup`) The `UnknownWarningGroup` diagnostic group addresses warnings related to the specification of unrecognized warning groups in compilation flags. ```sh swiftc -Werror non_existing_group file.swift :0: warning: unknown warning group: 'non_existing_group' ``` Such warnings are emitted after the behavior for all specified warning groups has been processed, which means their behavior can also be specified. For example: ```sh swiftc -Werror UnknownWarningGroup -Werror non_existing_group file.swift :0: error: unknown warning group: 'non_existing_group' ```