blob: 9683ee4f9981de38f2e1bfefb24909ac0374b17c [file] [log] [blame]
Eli Friedmanb1f40872008-06-10 05:18:06 +00001// RUN: clang -fsyntax-only -verify < %s
Chris Lattner0297c762008-02-25 04:01:39 +00002
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 %>