mirror of https://github.com/google/oss-fuzz.git
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
![]() |
export function exploreMe(a: number, b: number, c: string ) {
|
||
|
if (a > 2000 &&
|
||
|
b > 20000 &&
|
||
|
b - a < 10000
|
||
|
&& c === "Hello World!") {
|
||
|
throw Error("Crash!")
|
||
|
}
|
||
|
}
|