File: output22.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 (23 lines) | stat: -rw-r--r-- 388 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

template <{class T, class U, class V}> struct [cn C]
{
	struct [cn D] { static int $[di i]; };
};

template <{class T, class U}> struct [cn C]<|[cn T],[cn U],int|>
{
	struct [cn E] { static int $[di i]; };
};

template <{class T}> struct [cn C]<|[cn T],int,int|>
{
	struct [cn F] { static int $[di i]; };
};

int $[di main]({})
{
	[cn C]<|int,int,int|>::[cn F] $[di foo];
	return 0;
}