When adding a type alias using a keyword, the analyzer throws `AD0001`, when inside a namespace ```csharp namespace ClassLibrary { using Example = string; } ``` and also when using value tuple values ```csharp namespace ClassLibrary { using Example = (System.Collections.IList, int); } ```