File: test004

package info (click to toggle)
pmccabe 2.8-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 876 kB
  • sloc: ansic: 3,084; cpp: 1,080; sh: 401; makefile: 42
file content (23 lines) | stat: -rw-r--r-- 229 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

class T1
{
    int i;
    operator long();
    class /* unnamed */
    {
	int member(int a)
	{
	    return a;
	};
    };
    class T11
    {
	class T12
	{
	    int member(int a, int b)
	    {
		return a = b;
	    };
	}
    }
};