blob: 69ab94820b09379d9dc6374b59c4aa007e4b0dec [file] [log] [blame]
// Build don't link:
// Origin: Corey Kosak <kosak@cs.cmu.edu>
struct cow_t {
template<bool Q>
static void tfunc(cow_t *cowp) {}
void moo() {
cow_t *cowp;
tfunc<true>(cowp);
}
};
int main()
{
cow_t *cowp;
cow_t::tfunc<true>(cowp);
}