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