We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e2e7b commit b6bc4b6Copy full SHA for b6bc4b6
compiler/src/dotty/tools/dotc/core/Mode.scala
@@ -97,10 +97,10 @@ object Mode {
97
* Since this mode is only used during annotation typing,
98
* we can reuse the value of `ImplicitExploration` to save bits.
99
*/
100
- val InCaptureSet: Mode = newMode(13, "InCaptureSet")
+ val InCaptureSet: Mode = ImplicitExploration
101
102
/** We are currently unpickling Scala2 info */
103
- val Scala2Unpickling: Mode = newMode(14, "Scala2Unpickling")
+ val Scala2Unpickling: Mode = newMode(13, "Scala2Unpickling")
104
105
/** Signifies one of two possible situations:
106
* 1. We are currently checking bounds to be non-empty, so we should not
0 commit comments