~ubuntu-branches/ubuntu/utopic/cccc/utopic

« back to all changes in this revision

Viewing changes to test/prn11.cc

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2003-08-23 04:34:05 UTC
  • Revision ID: james.westby@ubuntu.com-20030823043405-xnzd3mn3hwtvi6dr
Tags: upstream-3.pre81
ImportĀ upstreamĀ versionĀ 3.pre81

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// prn11.cc
 
2
// SourceForge bug tracker item 233585
 
3
// Submitted by Victor B Putz
 
4
// Tests parsing of namespace declarations
 
5
// I am not confident that the present counting rules applying
 
6
// to this construct are optimal yet.
 
7
 
 
8
namespace A 
 
9
 
10
  void b( void ); 
 
11
}; 
 
12
 
 
13
void A::b( void ) 
 
14
 
15
 
16
 
 
17