mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
16 lines
254 B
Java
16 lines
254 B
Java
import org.jetbrains.annotations.Contract;
|
|
|
|
class Foo {
|
|
|
|
public void main(String[] args) {
|
|
for (int i = 0; i < 10; i++) {
|
|
assertTrue("str", true);
|
|
}
|
|
}
|
|
|
|
@Contract("_, false->fail")
|
|
void assertTrue(String msg, boolean value) {
|
|
|
|
}
|
|
|
|
} |