Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
d8bdba5d3534b87cae606d559933bc62752e8828
/
.
/
test
/
Lexer
/
digraph.cpp
blob: 07c085a1d55da3d31a2614658ab34f8a947b98d9 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only %s
%:
include
<stdio.h>
%:
ifndef BUFSIZE
%:
define BUFSIZE
512
%:
endif
void
copy
(
char
d
<::>,
const
char
s
<::>,
int
len
)
<%
while
(
len
--
>=
0
)
<%
d
<:
len
:>
=
s
<:
len
:>;
%>
%>