Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
CompileFeatures
/
cxx_right_angle_brackets.cpp
blob: 4d494b578463666cd1e231072c91a1359a4fae0c [
file
] [
log
] [
blame
]
template
<
typename
T
>
struct
A
{
typedef
T
Result
;
};
void
someFunc
()
{
/* clang-format off */
A
<
A
<int>
>
object
;
/* clang-format on */
(
void
)
object
;
}