-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Classfiles getting lost in case-insensitive filesystems #4119
New issue
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
Comments
|
If you do: class Foo
class foo we warn: |Class Foo differs only in case from foo. Such classes will overwrite one another on case-insensitive filesystems. Apparently we're missing a similar warning when doing: class Foo
object foo But otherwise there's nothing we can do, the tests should be fixed by using different names. |
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 15, 2018
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 15, 2018
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 16, 2018
nicolasstucki
added a commit
to dotty-staging/dotty
that referenced
this issue
Mar 23, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compiling
produces
Compiling
produces
Compiling
produces
Note that in a case-insensitive filesystem we will try to emit
Foo.cass
andfoo.class
and one will overwrite the other.The text was updated successfully, but these errors were encountered: