ballerina-lang icon indicating copy to clipboard operation
ballerina-lang copied to clipboard

Invalid subtype relation with `xml`

Open KavinduZoysa opened this issue 3 years ago • 1 comments
trafficstars

Description: $subject

type X xml;
type XE xml<xml:Element>;
type XP xml<xml:ProcessingInstruction>;
type XC xml<xml:Comment>;
type UX XE|XP|XC|xml:Text;

In the current implementation, X is identified as a subtype of UX which is not correct.

KavinduZoysa avatar Jan 21 '22 08:01 KavinduZoysa