You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In class C below, the specified bound on type variable T is an interface bound. In the JAIF format, to specify annotating the first interface bound of the (first) parameter, one uses bound 0&1. If, as in the JAIF below, one specifies bound 0&0, the default class bound java.lang.Object should be generated and annotated, but the insertion currently fails.
// sourcepublicclassC {
public <Textendsjava.io.Serializable> voidfoo(Tt) {
}
}
In class C below, the specified bound on type variable T is an interface bound. In the JAIF format, to specify annotating the first interface bound of the (first) parameter, one uses
bound 0&1
. If, as in the JAIF below, one specifiesbound 0&0
, the default class boundjava.lang.Object
should be generated and annotated, but the insertion currently fails.The expected result is as follows:
Tests BoundClassMultiple and BoundMethodMultiple have been corrected and disabled until there is a fix.
The text was updated successfully, but these errors were encountered: