File: prn11.cc

package info (click to toggle)
cccc 1%3A3.1.4-11
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,984 kB
  • sloc: ansic: 33,244; cpp: 10,527; java: 622; makefile: 158; sh: 11
file content (17 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// prn11.cc
// SourceForge bug tracker item 233585
// Submitted by Victor B Putz
// Tests parsing of namespace declarations
// I am not confident that the present counting rules applying
// to this construct are optimal yet.

namespace A 
{ 
  void b( void ); 
}; 

void A::b( void ) 
{ 
}