packages feed

typst-0.1.0.0: test/typ/compiler/let-16.typ

// Ref: false
// Simple destructuring.
#let (a: a, b, x: c) = (a: 1, b: 2, x: 3)
#test(a, 1)
#test(b, 2)
#test(c, 3)