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

Support F-Bounded Quantification in the VM. #439

Closed
crelier opened this issue Nov 14, 2011 · 6 comments
Closed

Support F-Bounded Quantification in the VM. #439

crelier opened this issue Nov 14, 2011 · 6 comments
Assignees
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.

Comments

@crelier
Copy link
Contributor

crelier commented Nov 14, 2011

This should be supported in the VM:

class FBound<F extends FBound<F>> {}

class Bar extends FBound<Bar> {}

class SubBar extends Bar {}

main() {
  FBound<Bar> fb = new FBound<Bar>();
  FBound<SubBar> fsb = new FBound<SubBar>(); /// 01: static type error
}

@crelier
Copy link
Contributor Author

crelier commented Nov 17, 2011

Added Area-VM label.

@iposva-google
Copy link
Contributor

Added Accepted label.

@crelier
Copy link
Contributor Author

crelier commented Jan 31, 2012

Issue #1222 has been merged into this issue.

@crelier
Copy link
Contributor Author

crelier commented Feb 3, 2012

Issue #1427 has been merged into this issue.

@crelier
Copy link
Contributor Author

crelier commented Apr 26, 2012

Fixed at r7047.


Added Fixed label.

@crelier
Copy link
Contributor Author

crelier commented Apr 26, 2012

Fixed at r7047.

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Projects
None yet
Development

No branches or pull requests

2 participants