The annotation processor should apply sensible compile-time checks to report any issues with constraints given via type annotations. E.g. the following should cause an error to be reported as the {{@Email}} constraint is not supported for {{Number}}:
{code} List<@Email Number> email; {code}
|