Minor: comment out test for KT-22594 to unmute it on teamcity

#KT-22594 Open
This commit is contained in:
Pavel V. Talanov
2018-02-12 15:08:45 +01:00
parent 53946456cf
commit 9e69c73387

View File

@@ -6,7 +6,9 @@ public class UsingReadOnlyInterfaces {
iCollection.add(elem);
iCollection.isEmpty();
iCollection.clear();
iCollection.<error>getSize</error>(); // this is not an error when analyzing against kotlin sources (which is a bug), this inconsistency is hard to fix with the current approach
// this is not an error when analyzing against kotlin sources (which is a bug), this inconsistency is hard to fix with the current approach
// KT-22594
// iCollection.<error>getSize</error>();
iCollection.size();
}