```scala val x = ''' + '"' val y = 1 + 0 ``` is highlighted incorrectly and `'''` is assumed to start a string instead of being the string itself whereas ```scala val x = '"' + ''' val y = 1 + 0 ``` is correctly highlighted