blob: 6494833e63c3b27ed1f507ac0d93ebf3b83e4326 [file] [log] [blame]
package varargs_in;
public class A_test1202 {
public String foo(String... strings) {
String s= "foo";
/*[*/for (String string : strings) {
System.out.println(string + s);
}/*]*/
return s;
}
}