blob: ff97e73140200794592d6233386fc54156943676 [file] [log] [blame]
// REQUIRED_ARGS: -O -profile -inline
struct Range {
private string s;
char charAt(int unused1) { return s[0]; }
}
bool count(Range* r, int* unused2)
{
*unused2 = 0;
int unused3;
char c = r.charAt(0);
return true;
}