blob: 25f99f10c68a0eda9cc82c95ef3da3e295d71844 [file] [log] [blame]
public class CharCastedToInt {
int charCastToInt(char c) {
intParameter((int) c);
return (int) c;
}
void intParameter(int x) {}
}