class Main { static void of(T t) {} static void of(T... t) {} void foo(String... strs){ Main.of(strs); } }