mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 95a81fcd1546afec31afc2a044a9ba5fa1337411
9 lines
244 B
Java
9 lines
244 B
Java
// "Assert 'container != null'" "true-preview"
|
|
class A{
|
|
void test(){
|
|
Integer container = Math.random() > 0.5 ? null : 1.0;
|
|
int i = 0;
|
|
assert container != null;
|
|
for (int limit = container.intValue(); i < limit; i++){}
|
|
}
|
|
} |