You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
962 B
44 lines
962 B
/*
|
|
* Copyright (c) 2013 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package codetoanalyze.java.infer;
|
|
|
|
|
|
public class DivideByZero {
|
|
|
|
public int divByZeroLocal(String s) {
|
|
int denominator = 0;
|
|
int nominator = 10;
|
|
int result = nominator / denominator;
|
|
return result;
|
|
}
|
|
|
|
public int divideByZeroInterProc(int denominator) {
|
|
return 10 / denominator;
|
|
}
|
|
|
|
//DO NOT MOVE, test relies on line number
|
|
public int callDivideByZeroInterProc() {
|
|
return divideByZeroInterProc(0);
|
|
}
|
|
|
|
//divide by zero with static fields
|
|
private static int x;
|
|
|
|
public void setXToZero() {
|
|
x = 0;
|
|
}
|
|
|
|
public int divideByZeroWithStaticField() {
|
|
setXToZero();
|
|
return divideByZeroInterProc(x);
|
|
}
|
|
|
|
}
|