The following line should dispatch `split` on `WrappedString` (after PIMPing). ``` println("a?b".split('?').toList) ``` However, the line yields `List("a?b")` rather than `List("a", "b")`