mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
276 B
Java
13 lines
276 B
Java
class Main {
|
|
public <T> T getAttribute() {return null;}
|
|
public <T> T getAttribute(T def) {return null;}
|
|
|
|
{
|
|
if (getAttribute()) {}
|
|
|
|
while (getAttribute()) {}
|
|
do {} while (getAttribute());
|
|
for(int i = 0; getAttribute(); i++);
|
|
}
|
|
}
|