aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/goto.C
blob: c6c1a569cf28ed3f37edfa15cb88fb0233fecf67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link:

template<class T>
void compute(T) {
    goto Exit;
Exit: ;
    }

int main() 
{
  compute(0);
}