f389ebf687
according to new mangling scheme
11 lines
171 B
C
11 lines
171 B
C
extern void *resolve_symbol(const char*);
|
|
|
|
int
|
|
run_test() {
|
|
int (*plus_eq)(int) = resolve_symbol("kfun:plus_eq(Int)");
|
|
|
|
if (plus_eq(3) != 14) return 1;
|
|
|
|
return 0;
|
|
}
|