Steven Schveighoffer wrote: > > BTW, I think you may have mistyped your string s = "a" ~ "b" example, that > should be legal. Oops, you're right. For compilation to fail, change it to: string s = "a".dup ~ "b"; Sean