blob: bb9882daddfcc29f4cf8b3c79e5a3c08ec672217 [file] [log] [blame]
#include <stdio.h>
unsigned test(unsigned X) {
return (unsigned char)X;
}
int main() {
printf("%d\n", test(123456));
return 0;
}