aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/UnitTests/2002-08-02-CastTest.c
blob: bb9882daddfcc29f4cf8b3c79e5a3c08ec672217 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

unsigned test(unsigned X) {
  return (unsigned char)X;
}

int main() {
	printf("%d\n", test(123456));
        return 0;
}