| 144 | } |
| 145 | |
| 146 | int main() { |
| 147 | int test = 123; |
| 148 | emscripten_log(EM_LOG_FUNC_PARAMS | EM_LOG_CONSOLE, "test print %d\n", test); |
| 149 | |
| 150 | Foo<int>(); |
| 151 | |
| 152 | DoubleTest(); |
| 153 | |
| 154 | if (failed) { |
| 155 | printf("Failed!\n"); |
| 156 | return 1; |
| 157 | } |
| 158 | |
| 159 | printf("Success!\n"); |
| 160 | return 0; |
| 161 | } |
nothing calls this directly
no test coverage detected