mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
13 lines
199 B
Typst
13 lines
199 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
|
|
}
|