mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01: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();
|
|
}
|
|
}
|