mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
215 B
Java
13 lines
215 B
Java
import org.checkerframework.checker.tainting.qual.*;
|
|
|
|
class Simple {
|
|
|
|
String a(String str) {
|
|
return str + "";
|
|
}
|
|
|
|
void test(@Untainted String input) {
|
|
@Untainted String s;
|
|
s = a<caret>(input);
|
|
}
|
|
} |