@Test public void test_5774() { checkNotSubtype("{int f2}|int","{null f2}|null"); }
@Test public void test_5775() { checkNotSubtype("{int f2}|int","{int f1}|int"); }
@Test public void test_5776() { checkIsSubtype("{int f2}|int","{int f2}|int"); }
private void checkIsSubtype(String from, String to) {
Type ft = Type.fromString(from);
Type tt = Type.fromString(to);
assertTrue(Type.isSubtype(ft,tt));
}