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 };
12