mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
19 lines
271 B
XML
19 lines
271 B
XML
// Test whether line comment acts as spacing.
|
|
A// you
|
|
B
|
|
|
|
// Test whether block comment acts as spacing.
|
|
C/*
|
|
/* */
|
|
*/D
|
|
|
|
// Test in expressions.
|
|
[f /*1*/ a: "b" //
|
|
, 1]
|
|
|
|
// Error: 1:7-1:9 unexpected end of block comment
|
|
/* */ */
|
|
|
|
// Unterminated block comment is okay.
|
|
/*
|