mirror of
https://github.com/typst/typst
synced 2025-05-15 01:25:28 +08:00
21 lines
288 B
Typst
21 lines
288 B
Typst
// Test embedded expressions.
|
|
// Ref: false
|
|
|
|
---
|
|
// Error: 6-8 expected identifier, found keyword `as`
|
|
#let as = 1 + 2
|
|
|
|
---
|
|
#{
|
|
// Error: 7-9 expected identifier, found keyword `as`
|
|
let as = 10
|
|
}
|
|
|
|
---
|
|
// Error: 2-2 expected expression
|
|
#
|
|
|
|
---
|
|
// Error: 2-2 expected expression
|
|
# hello
|