mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
8 lines
200 B
Java
8 lines
200 B
Java
// "Assert 'container != null'" "true"
|
|
class A{
|
|
void test(){
|
|
Integer container = null;
|
|
assert container != null;
|
|
for (int i = 0, limit = container.intValue(); i < limit; i++){}
|
|
}
|
|
} |