2
0

digraph.c 319 B

12345678910111213141516
  1. // RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
  2. // expected-no-diagnostics
  3. %:include <stdint.h>
  4. %:ifndef BUFSIZE
  5. %:define BUFSIZE 512
  6. %:endif
  7. void copy(char d<::>, const char s<::>, int len)
  8. <%
  9. while (len-- >= 0)
  10. <%
  11. d<:len:> = s<:len:>;
  12. %>
  13. %>