OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / defarg10.C
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 7 Jun 2005 <nathan@codesourcery.com>
3
4 // From java library.
5
6 void  Foo (int = 0);
7
8 class Klasse
9 {
10   friend void Foo (int);
11 };