blob: ab2c560f163e5c9326c4a4bcc35ab01109f0dc42 [file] [log] [blame]
package p; //8, 32, 8, 44
import java.util.Collection;
class A {
private void test(Collection c) {
for (Object o : c) {
final String temp= o.toString();
System.out.println(temp);
}
}
}