blob: 11e648ed86eaaf20d22e201f67cf2e158e1a1870 (
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
|
// { dg-do assemble }
// Submitted by Nathan Sidwell <nathan@acm.org>
// Bug: g++ was crashing after giving errors.
template<class T>
void connect_to_method( // { dg-message "connect_to_method|no known conversion" }
T *receiver,
void (T::*method)())
{}
class Gtk_Base
{
public:
void expose();
void show();
void show(int);
Gtk_Base();
};
Gtk_Base::Gtk_Base()
{
connect_to_method(this,&show); // { dg-error "no match" } invalid pmf expression
// { dg-message "candidate" "candidate note" { target *-*-* } 23 }
connect_to_method(this,&expose); // { dg-error "pointer to member" } invalid pmf expression
}
|