"not subtype of non existent type"
);
+is(
+ $Str_or_Undef->parent,
+ find_type_constraint('Item'),
+ 'parent of Str|Undef is Item'
+);
+
+is(
+ $Str_or_Undef->parents,
+ find_type_constraint('Item'),
+ 'parents of Str|Undef is Item'
+);
+
# another ....
my $ArrayRef = find_type_constraint('ArrayRef');
'... (ArrayRef | HashRef) cannot accept Numbers'
);
+is(
+ $HasOr
+
done_testing;