mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
9 lines
135 B
Java
9 lines
135 B
Java
public class Test2 {
|
|
// IntMultToLong
|
|
void foo() {
|
|
for (int k = 1; k < 10; k++) {
|
|
long res = k * 1000; // OK
|
|
}
|
|
}
|
|
}
|