Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
27b174f4c3f27e68f45a2e26d71cc46a72149192
/
.
/
clang
/
test
/
SemaTemplate
/
dependent-expr.cpp
blob: 412a811f729203c9513e7993ead7bbc705017bc6 [
file
] [
log
] [
blame
]
Eli Friedman
be55976
2009-12-30 00:20:14 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
// PR5908
4
template
<
typename
Iterator
>
5
void
Test
(
Iterator
it
)
{
6
*(
it
+=
1
);
7
}