File: test009

package info (click to toggle)
pmccabe 2.5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 424 kB
  • ctags: 450
  • sloc: ansic: 2,663; cpp: 1,080; sh: 345; makefile: 92
file content (23 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

extern int bar(int);

void
function1()
{
    class class1
    {
	int amember(int i)
	{
	    class class2
	    {
		int bmember(){return 1;};
	    }
	    for (i = 0; i < 100; i++)
		bar(i);
	    return i;
	};
    };

    class1 xx;
    xx.amember(100);
}