source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.other/defarg2.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 239 bytes
Line 
1// Test that default args don't mess up pmf type comparisons.
2// Contributed by Jason Merrill <jason@cygnus.com>.
3
4struct A {
5 void f (int = 0) { }
6};
7
8int
9main ()
10{
11 void (A::*p)(int) = 0;
12 p = &A::f;
13 if (p != &A::f)
14 return 1;
15}
Note: See TracBrowser for help on using the repository browser.