We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 seems to be related to compilation order. The following fails with a cyclic reference involving class deprecated:
cyclic reference involving class deprecated
$ sbt "run -language:Scala2 \ scala2-library/src/library/scala/io/Position.scala \ scala2-library/src/library/scala/Predef.scala \ scala2-library/src/library/scala/deprecated.scala"
Compiling with deprecated first leads to a different error:
deprecated
-- [E006] Unbound Identifier Error: scala2-library/src/library/scala/deprecated.scala:20:1 20 |@getter @setter @beanGetter @beanSetter | ^^^^^^ | not found: type getter longer explanation available when compiling with `-explain` -- [E006] Unbound Identifier Error: scala2-library/src/library/scala/deprecated.scala:20:9 20 |@getter @setter @beanGetter @beanSetter | ^^^^^^ | not found: type setter longer explanation available when compiling with `-explain` -- [E006] Unbound Identifier Error: scala2-library/src/library/scala/deprecated.scala:20:17 20 |@getter @setter @beanGetter @beanSetter | ^^^^^^^^^^ | not found: type beanGetter longer explanation available when compiling with `-explain` -- [E006] Unbound Identifier Error: scala2-library/src/library/scala/deprecated.scala:20:29 20 |@getter @setter @beanGetter @beanSetter | ^^^^^^^^^^ | not found: type beanSetter
The text was updated successfully, but these errors were encountered:
04f5584
Merge pull request #2800 from dotty-staging/fix-predef-deprecated-cycle
82767d1
Fix #2633: Cyclic reference when compiling Predef and deprecated
No branches or pull requests
This seems to be related to compilation order. The following fails with a
cyclic reference involving class deprecated
:Compiling with
deprecated
first leads to a different error:The text was updated successfully, but these errors were encountered: