// test division by zero class Main { void main() { int a; int b; a = 10; b = a / 0; } }