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

Improve Captureset Subtyping and Intervals #21999

Open
bracevac opened this issue Nov 21, 2024 · 1 comment · May be fixed by #22000
Open

Improve Captureset Subtyping and Intervals #21999

bracevac opened this issue Nov 21, 2024 · 1 comment · May be fixed by #22000
Labels
area:experimental:cc Capture checking related cc-experiment Intended to be merged with cc-experiment branch on origin itype:bug

Comments

@bracevac
Copy link
Contributor

bracevac commented Nov 21, 2024

From discussions in PR #21875

Compiler version

Latest NIGHTLY

Minimized code

import language.experimental.captureChecking
import caps.*

trait Abstract[X >: Nothing]: // Concrete2 and 3 fail with this lower bound, but work with X >: CapSet^{}
    type C >: X <: CapSet^
    def boom(): Unit^{C^}

class Concrete extends Abstract[CapSet^{}]:
    type C = CapSet^{}
    def boom() = () // ok

class Concrete2 extends Abstract[CapSet^{}]:
    type C = CapSet^{} & CapSet^{}
    def boom() = () // error

class Concrete3 extends Abstract[CapSet^{}]:
    type C = CapSet^{} | CapSet^{}
    def boom() = () // error

Output

-- Error: local/i21868.scala:14:14 ---------------------------------------------
14 |    def boom() = () // error
   |              ^
   |          Illegal capture reference: (caps.CapSet^{}) & (caps.CapSet^{})
-- Error: local/i21868.scala:18:14 ---------------------------------------------
18 |    def boom() = () // error
   |              ^
   |          Illegal capture reference: (caps.CapSet^{}) | (caps.CapSet^{})

Expectation

  • I would expect those to work even if the lower bound of X in trait Abstract[X] is set to Nothing.
  • Can we make union and intersection on CapSet commute with capture set union and intersection, i.e., CapSet^c1 | CapSet^c2 <:> CapSet^(c1 | c2) and CapSet^c1 & CapSet^c2 <:> CapSet^(c1 & c2)? Probably, that involves improving normalizeCaptures in Setup.
  • Can we let the syntax C^ for declaring a type variable automatically desugar to the interval CapSet^{} <: C <: CapSet^?
    • Is this always airtight, or will it cause trouble?
@bracevac bracevac added itype:bug cc-experiment Intended to be merged with cc-experiment branch on origin stat:needs triage Every issue needs to have an "area" and "itype" label area:experimental:cc Capture checking related labels Nov 21, 2024
@bracevac
Copy link
Contributor Author

cc @noti0na1 @Linyxus

@bracevac bracevac removed the stat:needs triage Every issue needs to have an "area" and "itype" label label Nov 21, 2024
@noti0na1 noti0na1 linked a pull request Nov 21, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:experimental:cc Capture checking related cc-experiment Intended to be merged with cc-experiment branch on origin itype:bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant