Beef
Beef copied to clipboard
[BUG] Some problems when using a typealias
- For some reason it shows an error of ambiguous reference
- The previous error disappears from the IDE if you edit something in the code, and appears again if you delete one letter of the extension and add it back
- You can't use an alias to define an extension because of an error (Maybe this isn't a bug but I'm reporting just to be sure)

Code:
typealias EAlias = SAlias.ETest;
typealias SAlias = STest;
public class STest
{
public enum ETest
{
A,
B,
C
}
}
public extension SAlias
{
}
(I removed the generic from the code because it's not necessary for this problem to happen)