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

Context bound behaves differently from a using-clause #20070

Closed
dkz opened this issue Apr 2, 2024 · 4 comments
Closed

Context bound behaves differently from a using-clause #20070

dkz opened this issue Apr 2, 2024 · 4 comments
Labels
area:implicits related to implicits area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug

Comments

@dkz
Copy link

dkz commented Apr 2, 2024

Compiler version

3.3.1, 3.4.1

Minimized code

trait F[A]
given F[Int] = new F {}
def f[A: F] = { (x: A) => x }
println(f[Int](1))

Output

  |f[Int](1)
  |       ^
  |       Found:    (1 : Int)
  |       Required: F[Int]
  |
  | longer explanation available when compiling with `-explain`

Expectation

Scala 3 Book suggests that context bound de-sugaring mirrors the following code:

def f[A](using F[A]) = { (x: A) => x }

Yet, the latter doesn't lead to a compile error in f[Int](1).

@dkz dkz added itype:bug stat:needs triage Every issue needs to have an "area" and "itype" label labels Apr 2, 2024
@som-snytt
Copy link
Contributor

It compiles under -source:future. (I'm not following it closely enough.)

A footnote is that 3.4 also warns and offers a rewrite, but I don't think the rewrite works while there is an error, so that is an interesting conundrum.

This code can be rewritten automatically under -rewrite -source 3.4-migration.

@reid-spencer
Copy link

A footnote is that 3.4 also warns and offers a rewrite, but I don't think the rewrite works while there is an error, so that is an interesting conundrum.

There's a related issue with context bounds that I reported a while back; where a warning generates a notice of an available automatic -rewrite that appears to not be implemented (i.e. specifying -rewrite -source 3.4-migration does not actually get the warned-about code rewritten).

#19872

@Gedochao Gedochao added area:reporting Error reporting including formatting, implicit suggestions, etc area:implicits related to implicits and removed stat:needs triage Every issue needs to have an "area" and "itype" label labels Apr 3, 2024
@Gedochao
Copy link
Contributor

Gedochao commented Apr 3, 2024

It compiles under -source:future. (I'm not following it closely enough.)

This is very weird. And indeed, true.

@som-snytt
Copy link
Contributor

This was fixed in 3.6 (last summer, released at end of year), probably just the "release the hounds" PR to "switch mapping", i.e., flags. That is why just the application was confused.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:implicits related to implicits area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug
Projects
None yet
Development

No branches or pull requests

4 participants