blob: 34758967c2e9fd41bf32109b21e01dfe71cc3fb8 [file] [log] [blame]
// Build don't link:
// Origin: Corey Kosak
struct cow_t {
template<bool Q>
static void tfunc(cow_t *cowp) {}
void moo() {
cow_t *cowp;
cow_t::tfunc<true>(cowp);
}
};
int main()
{
cow_t *cowp;
cow_t::tfunc<true>(cowp);
}