| 13 | extern void __hxcpp_collect(bool inMajor); |
| 14 | |
| 15 | bool checkAttachNone(const char *where) |
| 16 | { |
| 17 | if (hx::GcGetThreadAttachedCount()!=0) |
| 18 | { |
| 19 | printf("Bad attach count - something attached: %s\n",where); |
| 20 | return false; |
| 21 | } |
| 22 | return true; |
| 23 | } |
| 24 | |
| 25 | int main(int argc, char **argv) |
| 26 | { |
no test coverage detected