| 23 | BigInt BigInt(int x){ BigInt a; a.i = x; return a; }\r\n\ |
| 24 | BigInt[] xBI = { for(i in range(1,30)) yield BigInt(i); };\r\n\ |
| 25 | int good = 1;\r\n\ |
| 26 | void CHECK(double a, int b){ if(a != b) good = 0; }\r\n\ |
| 27 | void CHECK(float a, int b){ if(a != b) good = 0; }\r\n\ |
| 28 | void CHECK(long a, int b){ if(a != b) good = 0; }\r\n\ |
| 29 | void CHECK(int a, int b){ if(a != b) good = 0; }\r\n\ |
nothing calls this directly
no outgoing calls
no test coverage detected