Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
27b174f4c3f27e68f45a2e26d71cc46a72149192
/
.
/
clang
/
test
/
SemaTemplate
/
dependent-expr.cpp
blob: 412a811f729203c9513e7993ead7bbc705017bc6 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR5908
template
<
typename
Iterator
>
void
Test
(
Iterator
it
)
{
*(
it
+=
1
);
}