mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
12 lines
211 B
Typst
12 lines
211 B
Typst
// Test parenthesized function calls.
|
|
// Ref: false
|
|
|
|
---
|
|
// Whitespace insignificant.
|
|
#[test type(1), "integer"]
|
|
#[test type (1), "integer"]
|
|
|
|
// From variable.
|
|
#let alias = type
|
|
#[test alias(alias), "function"]
|