blob: 86f4d45fe9d284403081e9dd892773cae15097a1 [file] [log] [blame]
// "Change to 'appendable.append(1)'" "true"
class Test {
void appendable(StringBuilder appendable) throws IOException {
appendable.append(1);
}
}