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
object Foo
When compiled with Dotc:
MacBook-Pro-Anatolii:dotty anatolii$ javap Foo$.class Compiled from "Playground.scala" public final class Foo$ implements scala.Serializable { public static final Foo$ MODULE$; public static {}; public Foo$(); }
When compiled with Scalac:
MacBook-Pro-Anatolii:issues anatolii$ javap Foo\$.class Compiled from "Playground.scala" public final class Foo$ { public static Foo$ MODULE$; public static {}; }
This breaks logic that depends on class file analysis. E.g. mill test discovery.
The text was updated successfully, but these errors were encountered:
Add a test for scala#6834
d307177
f71b8bb
Merge pull request #6836 from dotty-staging/private-module-constructors
11dd2bb
Fix #6834: Make module constructors private
No branches or pull requests
When compiled with Dotc:
When compiled with Scalac:
This breaks logic that depends on class file analysis. E.g. mill test discovery.
The text was updated successfully, but these errors were encountered: