'''Should raise IndentationError'''

def f():
     s = "a"\
         "b"
         "c"

f()
