// Build don't link: // Origin: Corey Kosak struct cow_t { template static void tfunc(cow_t *cowp) {} void moo() { cow_t *cowp; cow_t::tfunc(cowp); } }; int main() { cow_t *cowp; cow_t::tfunc(cowp); }