summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/label11.C
blob: dd922286064b5f0bc2b1a499060d6ce5ebf002d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// PR c++/38725
// { dg-do compile }
// { dg-options "" }

struct A {};
struct B : virtual A {};
int vi;
void *vp;

void
f1 (int i)
{
  goto *i;
}

void
f2 (B b)
{
  goto *b;	// { dg-error "cannot convert" }
}

template <typename T>
void
f3 (T i)
{
  goto *i;
}

void
f3a ()
{
  f3 (vi);
}

template <typename T>
void
f4 (T i)
{
  goto *i;
}

void
f4a ()
{
  f4 (vp);
}