blob: 9da5e6e02732e9ecb4ba2f8e39edf71d20b8e1a4 [file] [log] [blame]
// { dg-do assemble }
// 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>
// check the order of declarations
class A {
public:
void f(double* p) { std::cout << "A(double*)\n"; } // { dg-error "" } candidate
void f(int* p) { std::cout << "A(int*)\n"; } // { dg-error "" } candidate
};
class B {
public:
void f(int* p) { std::cout << "B(int*)\n"; } // { dg-error "" } candidate
void f(double* p) { std::cout << "B(double*)\n"; } // { dg-error "" } candidate
};
int main()
{
A a;
B b;
a.f(0);// { dg-error "" } .*
b.f(0);// { dg-error "" } .*
}