Files
Nim/tests/ccgbugs/t25387.nim
ringabout a41bbf6901 fixes #25387; embedsrc breaks with Line Continuation (#25388)
fixes #25387


https://stackoverflow.com/questions/30286253/how-to-escape-backslash-in-comment

- adding a whitespace or `\t` after `\` breaks the `goto` block
- `\* *\` doesn't support nesting, causing problems for using it in the
Nim comments
2025-12-25 21:02:54 +01:00

8 lines
117 B
Nim

discard """
matrix: "--embedsrc=on"
"""
proc trim() =
let s = 10
let x = s + 5 # user entered literal \
trim()