File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
compiler/src/dotty/tools/dotc/core Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ object Flags {
526526 val DeferredOrLazyOrMethod : FlagSet = Deferred | Lazy | Method
527527 val DeferredOrTermParamOrAccessor : FlagSet = Deferred | ParamAccessor | TermParam // term symbols without right-hand sides
528528 val DeferredOrTypeParam : FlagSet = Deferred | TypeParam // type symbols without right-hand sides
529- val EnumValue : FlagSet = Enum | JavaStatic | StableRealizable // A Scala enum value
529+ val EnumValue : FlagSet = Enum | StableRealizable // A Scala enum value
530530 val StableOrErased : FlagSet = Erased | StableRealizable // Assumed to be pure
531531 val ExtensionMethod : FlagSet = Extension | Method
532532 val FinalOrInline : FlagSet = Final | Inline
Original file line number Diff line number Diff line change 1+ object ABug
2+ enum Tag
3+ case first
4+ import Tag .first
5+ val xx = first
6+
You can’t perform that action at this time.
0 commit comments