blob: d0b690d83fc86241f8d4ba792192f89bceedcfed [file] [log] [blame]
class A{
String toHex(int i) {}
String toHex(short i) {}
void f(){
String result = toHex((short)'i');
}
}