emscripten/tests/core/test_emptyclass.in

12 строки
171 B
Plaintext

#include <stdio.h>
struct Randomized {
Randomized(int x) { printf("*zzcheezzz*\n"); }
};
int main(int argc, const char *argv[]) {
new Randomized(55);
return 0;
}