blob: 07c085a1d55da3d31a2614658ab34f8a947b98d9 [file] [log] [blame]
Chris Lattner146ccd42008-02-24 19:05:57 +00001// RUN: clang -fsyntax-only %s
2
3%:include <stdio.h>
4
5 %:ifndef BUFSIZE
6 %:define BUFSIZE 512
7 %:endif
8
9 void copy(char d<::>, const char s<::>, int len)
10 <%
11 while (len-- >= 0)
12 <%
13 d<:len:> = s<:len:>;
14 %>
15 %>