pmunch\: Is there a way to tell futhark to wrap a function `` even when `` is already declared? I'm trying to wrap a library, which has a function `foo_create` and I have a `renameCallback, which strips off the `foo\_`of identifiers. But now futhark says`Declaration of create already exists, not redeclaring`, probably because of `system.create`? I think it would be fine if users of my wrapper would have to use a qualified `foo.create()\` because of the ambiguity, but futhark won't let me do it.