Skip to content
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

-language:_ doesn't disable feature warnings #5764

Closed
scabug opened this issue May 4, 2012 · 1 comment
Closed

-language:_ doesn't disable feature warnings #5764

scabug opened this issue May 4, 2012 · 1 comment
Assignees
Milestone

Comments

@scabug
Copy link

scabug commented May 4, 2012

Providing the option -language:_ should disable feature warnings as described in SIP-18, but it doesn't.

import language._ works fine, however.

$ scala -language:_
scala> scala> def x[M[_]] = 3
warning: there were 1 feature warnings; re-run with -feature for details
x: [M[_]]=> Int

scala> import language._
import language._

scala> def x[M[_]] = 3
x: [M[_]]=> Int
@scabug
Copy link
Author

scabug commented May 4, 2012

Imported From: https://issues.scala-lang.org/browse/SI-5764?orig=1
Reporter: @harrah
Affected Versions: 2.10.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants