xref: /Universal-ctags/Units/parser-elm.r/elm-multiline-strings.d/input.elm (revision 94e964efcdb54004e666334f92f6bee597c7ab96)
1-- We should be able to parse this function
2
3funcA a1 a2 = a1 + a2
4
5-- We should get only funcB, not funcC
6
7funcB b =
8    b + """This is a multiline
9string, which ends after
10
11funcC = 3
12"""
13
14funcD d1 =
15    (d1 + 34)
16
17-- The end
18