// usepromote/varmod — exports a top-level `let varmod` with the same // leaf as the module name. Paired with pos_var.ww to exercise the // SK_USE→SK_VAR promotion at cmd/wcc/check.c L1736. Same shape as // SK_DEF / SK_FN — without `use_alias = 1`, the consumer's // `varmod.flag` lookup fails. package varmod; export let varmod: i32 = 0i32; export type flag = enum i32 { NONE = 0, A = 42, };