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:
434 bytes
|
Line | |
---|
1 | // Build don't link:
|
---|
2 | // Special g++ Options: -fpermissive
|
---|
3 |
|
---|
4 | // Copyright (C) 2000 Free Software Foundation, Inc.
|
---|
5 | // Contributed by Nathan Sidwell 28 Feb 2001 <nathan@codesourcery.com>
|
---|
6 |
|
---|
7 | // Make sure we warn about our overload extension about picking the
|
---|
8 | // one with the least worse conversion
|
---|
9 |
|
---|
10 | struct X
|
---|
11 | {
|
---|
12 | X (int);
|
---|
13 | };
|
---|
14 | void Foo (int, float, bool);
|
---|
15 | void Foo (float, int, X);
|
---|
16 |
|
---|
17 | void Baz ()
|
---|
18 | {
|
---|
19 | Foo (1, 1, 0); // WARNING - least worse
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.