We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This would be nice if this compiled
Enum SomeFlag FlagA = 1 FlagB = 2 FlagC = 4 FlagAll = SomeFlag.FlagA | SomeFlag.FlagB | SomeFlag.FlagC EndEnum
Currently it gives an error 'Compile Error: Cyclic declaration of 'SomeFlag'.' which is fair enough.
And it's not a big deal to work around of course. Just food for thought as the values are only constants.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
This would be nice if this compiled
Currently it gives an error 'Compile Error: Cyclic declaration of 'SomeFlag'.' which is fair enough.
And it's not a big deal to work around of course.
Just food for thought as the values are only constants.
The text was updated successfully, but these errors were encountered: