We probably should drop the `@Repeated` annotation when inferring the result type of a method: ```scala scala> def foo(s: String*) = s def foo(s: String*): Seq[String] @Repeated scala> def foo(s: String*) = { val s1 = s; s1 } def foo(s: String*): Seq[String] ```