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
The following code, when compiled with -Xlint, yields a warning:
-Xlint
import Container._ class Container { println(classOf[MyClass]) } object Container { private class MyClass }
[warn] Main.scala:8: private class MyClass in object Container is never used [warn] private class MyClass [warn] ^ [warn] one warning found
In real world projects, this is happening to me because I'm using Java libraries and I need to pass a Class to be instantiated by reflection.
Class
The text was updated successfully, but these errors were encountered:
Duplicates #9058
Sorry, something went wrong.
No branches or pull requests
The following code, when compiled with
-Xlint
, yields a warning:In real world projects, this is happening to me because I'm using Java libraries and I need to pass a
Class
to be instantiated by reflection.The text was updated successfully, but these errors were encountered: