various numeric literals' tests

This commit is contained in:
Konstantin Anisimov
2016-10-28 12:27:12 +03:00
parent cc47ed98f3
commit f02e0af5a2
7 changed files with 48 additions and 1 deletions
@@ -0,0 +1,10 @@
extern void *resolve_symbol(const char*);
int
run_test() {
int (*bool_yes)() = resolve_symbol("kfun:bool_yes");
if (!bool_yes()) return 1;
return 0;
}