blob: 6f5373e0f84d5c7bec866443d268f3a0bcad897d [file]
package test6;
public class CCTest6ii {
public static void main(String[] args) {
CCTest6 t = new CCTest6();
t.test("Hello", "Hello", "Hello"); //Check the signature of the test method.
}
public void test(String permanent, String ... variable) {
}
}