Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
e23f0a7ad6fe7a394cd83f92979eb5871a040052
/
.
/
bindgen-tests
/
tests
/
headers
/
constructor-tp.hpp
blob: 3b5d54071a530ba5673d3d598f2d778d4a0b2120 [
file
] [
log
] [
blame
]
template
<
typename
T
>
class
Foo
{
public
:
Foo
();
void
doBaz
();
};
template
<
typename
T
>
void
Foo
<
T
>::
doBaz
()
{
}
class
Bar
{
public
:
Bar
();
};
template
<
typename
T
>
Foo
<
T
>::
Foo
()
{
}
Bar
::
Bar
()
{
}