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
extension [S](f: S => Int) inline def f(s: String) = "test" def testStuff = ((s: String) => 42).f("foo")
def test = ((s: String) => 42).f("foo") ^^^^^^^^^^^^^^^^ missing arguments for inline method method extension_f
it should compile, just like this
extension [S](f: S => Int) def f(s: String) = "test" def testStuff = ((s: String) => 42).f("foo")
which is the exact same definition except method f is no longer inline
The text was updated successfully, but these errors were encountered:
1f94a38
Merge pull request #9831 from dotty-staging/fix-#9828
cad5cc9
Fix #9828: Add missing case for adapt of ExpMethodApply results
odersky
No branches or pull requests
Minimized code
Output
Expectation
it should compile, just like this
which is the exact same definition except method f is no longer inline
The text was updated successfully, but these errors were encountered: