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 |
|
---|
4 | struct A {
|
---|
5 | void f (int = 0) { }
|
---|
6 | };
|
---|
7 |
|
---|
8 | int
|
---|
9 | main ()
|
---|
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.