Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 22811c1

Browse files
committed
Ignore asubtypeTransitive
1 parent c1f29dd commit 22811c1

File tree

1 file changed

+2
-1
lines changed
  • src/org/rascalmpl/core/library/lang/rascalcore/check/tests

1 file changed

+2
-1
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/tests/ATypeTests.rsc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ test bool asubtypeReflexive(AType x) = asubtypeClean(x, x);
3939
// } else
4040
// return true;
4141
//}
42-
42+
43+
@ignore{Issues to be studied}
4344
test bool asubtypeTransitive(AType x, AType y, AType z){
4445
return (asubtypeClean(x, y) && asubtypeClean(y, z)) ==> asubtypeClean(x, z);
4546
}

0 commit comments

Comments
 (0)