Verifier support for CheckROCOW
[hiphop-php.git] / hphp / test / quick / div-zero.php
blob8d9ded7dad813f86b1f2876b6e6961957fc9fcb2
1 <?hh
4 function main($num, $zero) {
5 try {
6 $z = $num / 0;
7 } catch (DivisionByZeroException $e) {
8 echo $e->getMessage(), "\n";
10 try {
11 $zz = $num / $zero;
12 } catch (DivisionByZeroException $e) {
13 echo $e->getMessage(), "\n";
16 <<__EntryPoint>> function main_entry(): void {
17 main(123, 0);