/* test108.c L. Stewart February 15, 1982 1:11 PM test for case sensitivity */ int i; main() { a(); A(); }; a() { i = 1; }; A() { i = 2; };