Files
kotlin-fork/nj2k/testData/newJ2k/postProcessing/GuardClause.java
T
2019-08-09 00:43:28 +03:00

7 lines
160 B
Java
Vendored

public class Test {
void test(String s) {
if (s == null) {
throw new IllegalArgumentException("s should not be null");
}
}
}