blob: e940caf44f4b50d7bee70bf44cc155db5d56bf2e [file] [log] [blame]
Daniel Dunbarc79f7672010-09-07 22:54:28 +00001// RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Chris Lattner146ccd42008-02-24 19:05:57 +00003
Daniel Dunbar23afaad2009-11-17 08:57:36 +00004%:include <stdint.h>
Chris Lattner146ccd42008-02-24 19:05:57 +00005
6 %:ifndef BUFSIZE
7 %:define BUFSIZE 512
8 %:endif
9
10 void copy(char d<::>, const char s<::>, int len)
11 <%
12 while (len-- >= 0)
13 <%
14 d<:len:> = s<:len:>;
15 %>
16 %>