android_mt6572_jiabo/external/clang/test/Lexer/digraph.c
2025-09-05 16:56:03 +08:00

16 lines
319 B
C

// RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
// expected-no-diagnostics
%:include <stdint.h>
%:ifndef BUFSIZE
%:define BUFSIZE 512
%:endif
void copy(char d<::>, const char s<::>, int len)
<%
while (len-- >= 0)
<%
d<:len:> = s<:len:>;
%>
%>