About
Contact
QtCreator
KDevelop
Solarized
1
void
f
();
2
3
inline
int
g
() {
return
0
; }
4
5
template
<
typename
T>
6
void
h
(T
t
) {}
7
8
template
<>
9
void
h
(
int
t
) {}
10
11
class
A
{
12
public
:
13
void
f
();
14
};
15