Java: update Math.min test case

This commit is contained in:
Jami Cogswell
2022-12-22 14:36:06 -05:00
parent a81c54b58c
commit 673d37cc3d

View File

@@ -102,6 +102,8 @@ public class Test {
int i4 = (int)source();
int i5 = (int)source();
sink(Math.min(i4, i5)); // $hasValueFlow
sink(Math.min(i4, 42)); // $hasValueFlow
sink(Math.min(42, i5)); // $hasValueFlow
// java.sql
Connection con = DriverManager.getConnection("");