StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / Lexer / digraph.c
blobcf6e4789afa8d9c1c10406ed96aadfa7247e0164
1 // RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
3 %:include <stdint.h>
5 %:ifndef BUFSIZE
6 %:define BUFSIZE 512
7 %:endif
9 void copy(char d<::>, const char s<::>, int len)
11 while (len-- >= 0)
13 d<:len:> = s<:len:>;