github.com/cheshirekow/buildtools@v0.0.0-20200224190056-5d637702fe81/build/testdata/017.golden (about) 1 # c1 2 greeting = "hello " + \ 3 "world" # c2 4 # c3 5 6 # c4 7 greeting = "hello " + \ 8 "world" # c5 9 # c6 10 11 # c7 12 greeting = "hello " + \ 13 "world" # c8 14 # c9 15 16 # c10 17 greeting = ("hello " + # c11 18 "world") # c12 19 # c13 20 21 # c14 22 greeting = ("hello " + # c15 23 "world") # c16 24 # c17 25 26 # c18 27 greeting = ("hello" + # c19 28 # c20 29 "world") # c21 30 # c22 31 32 greeting = "hello " + \ 33 "world" # c23 34 35 greeting = ("hello " + # c24 36 "world") 37 38 greeting = ("hello " + # c25 39 "world")