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
Given a nested type {code}trait Compiler { trait Config }{code} I expect this to work similar to a method:
class F(val c: Compiler)(val conf: c.Config)
but this produces an error (with a rather surprising message):
<console>:8: error: not found: value c class F(val c: Compiler)(val conf: c.Config) ^
The text was updated successfully, but these errors were encountered:
Imported From: https://issues.scala-lang.org/browse/SI-9491?orig=1 Reporter: @alexeyr Affected Versions: 2.11.7
Sorry, something went wrong.
@alexeyr said: Duplicate of #5712
No branches or pull requests
Given a nested type {code}trait Compiler { trait Config }{code} I expect this to work similar to a method:
but this produces an error (with a rather surprising message):
The text was updated successfully, but these errors were encountered: