#include #include $abstract int random(void); // ERROR: abstract functions requires >= 1 input void main() { int x = 0; x = random(); assert(x==1); }