File: output03.cpp

package info (click to toggle)
kelbt 0.12-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,456 kB
  • ctags: 1,986
  • sloc: cpp: 8,015; ansic: 3,331; makefile: 137; sh: 92
file content (37 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

class [cn F] {
	struct [cn FH]{};
};

template <{class T}> class [cn TC] {};

class [cn C]
{
	$~[di C]({float $[di f]});
	$[di C]({int $[di i], int $<*>[di j]});

	$[cn C]::~[di C]({});
	$::[cn C]::~[di C]({});
	$::~[di F]({});
//	~F();
	$[di i];
	void $[di func]({}) {
		~[cn C]();
		~[cn F]();
		~G();
		::~[cn C]();
		::~[cn F]();
		::~[cn TC]<|int|>();
		[cn F]::~[cn FH]();
		~G();
		~[cn F];
		~::G;
		::~[cn F];
		~G;
	}
};

void $[di main]({})
{
}