Closed
Description
object Test {
implicit class SCOps(ctx: StringContext) {
def foo(args: String*): String = ""
}
def test(sc: StringContext, name: String) = {
// {
// val $1$: Test.SCOps = Test.SCOps(sc)
// $1$.foo([ : String]: String*)
// }
sc.foo()
// Test.SCOps(sc).foo([name : String]: String*)
sc.foo(name)
}
}