Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
e646b1fce7643a77831a0d70f0d6ca658c561884
/
.
/
Tests
/
CompileFeatures
/
cxx_template_template_parameters.cpp
blob: d57dd3698de85f443ad7b7158d5d72307f86f68a [
file
] [
log
] [
blame
]
template
<
template
<typename>
class
T
,
typename
U
>
void
someFunc
(
T
<
U
>)
{
}
template
<
typename
T
>
struct
A
{
};
void
otherFunc
()
{
A
<int>
a
;
someFunc
(
a
);
}