mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
11 lines
207 B
Java
11 lines
207 B
Java
// "Propagate safe annotation from 's'" "true"
|
|
import org.checkerframework.checker.tainting.qual.*;
|
|
|
|
class Simple {
|
|
|
|
void test(@Untainted String s) {
|
|
sink(s);
|
|
}
|
|
|
|
void sink(@Untainted String s) {}
|
|
} |