launcher for classfields_1.kt

This commit is contained in:
Vasily Levchenko
2016-09-12 17:24:32 +03:00
parent 00354672d2
commit 35fb5fd82d
+12
View File
@@ -0,0 +1,12 @@
#include <stdlib.h>
extern int test_field_assignment_Int(int);
void *malloc_heap() {
return malloc(64);
}
int
main() {
return test_field_assignment_Int(1);
}