aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/arg1.C
blob: 1712f932f13344c928700c74d2deccc12cd38266 (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
// Build don't link: 
// GROUPS passed arg-matching
// arg-matching file
// Subject: argument matching depending on the def order
// From: kondo@akane.mech.ibaraki.ac.jp
// Date: Fri, 04 Sep 92 17:41:05 JST

#include <iostream.h>
//  check the order of declarations
class A {
public:
      void f(double* p) { cout << "A(double*)\n"; } // ERROR - candidate
      void f(int* p) { cout << "A(int*)\n"; } // ERROR - candidate
};

class B {
public:
      void f(int* p) { cout << "B(int*)\n"; } // ERROR - candidate
      void f(double* p) { cout << "B(double*)\n"; } // ERROR - candidate
};

int main()
{
    A a;
    B b;

    a.f(0);// ERROR - .*
    b.f(0);// ERROR - .*
}