mirror of
https://github.com/github/codeql.git
synced 2026-04-01 13:18:20 +02:00
8 lines
189 B
Java
8 lines
189 B
Java
class SupportedExternalTaint {
|
|
public static void main(String[] args) throws Exception {
|
|
StringBuilder builder = new StringBuilder();
|
|
builder.append("foo");
|
|
builder.toString();
|
|
}
|
|
}
|