-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
Comments
Added Area-VM label. |
Added Accepted label. |
Issue #1222 has been merged into this issue. |
Issue #1427 has been merged into this issue. |
Fixed at r7047. Added Fixed label. |
Fixed at r7047. |
crelier
added
Type-Defect
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
labels
Apr 26, 2012
This was referenced Oct 29, 2020
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.
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
}
The text was updated successfully, but these errors were encountered: