mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
dfa: pop all the contract-unchecked arguments from stack (IDEA-112500)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import org.jetbrains.annotations.Contract;
|
||||
|
||||
public 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) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user