source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.ext/overload1.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: 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
10struct X
11{
12 X (int);
13};
14void Foo (int, float, bool);
15void Foo (float, int, X);
16
17void Baz ()
18{
19 Foo (1, 1, 0); // WARNING - least worse
20}
Note: See TracBrowser for help on using the repository browser.