blob: 0d8ad483334d212d8f1630025e6fdb15567aa55d (
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
|
// { dg-do run }
// GROUPS passed overloading
// Check that calls to the correct overloaded virtual
// functions are generated even where the type of the formal
// arguments for the overloadings are similar or related.
extern "C" int printf (const char *, ...);
int proper_method_called = 0;
struct base {
int member;
virtual void method (char)
{
}
virtual void method (char *)
{
}
};
struct derived : public base {
int member;
virtual void method (char)
{
}
virtual void method (char *)
{
proper_method_called++;
}
};
char *message;
int main ()
{
derived derived_object;
derived_object.method (message);
if (proper_method_called != 1)
{ printf ("FAIL\n"); return 1; }
else
printf ("PASS\n");
}
|