//ww:error "not assignable" // migrated from test/wcc/949_xmod_fnptr_const_run.c: cross-module &fn with a mismatched signature must not satisfy the declared *fn slot. package cc; export fn isa(c: rune) bool = { return c == 'a'; }; package main; import cc; const t: [](str, *fn(x: i32) i32) = [(":a", &cc.isa)]; export fn main() i32 = { return len(t): i32; };