brintos

brintos / llvm-project-archived public Read only

0
0
Text · 384 B · b1a9940 Raw
18 lines · c
1// RUN: %clang_cc1 -ffreestanding -Eonly -verify %s 2#  define HEADER <stdarg.h>3 4#  include HEADER5 6#include <limits.h> NON_EMPTY // expected-warning {{extra tokens at end of #include directive}}7 8// PR3916: these are ok.9#define EMPTY10#include <limits.h> EMPTY11#include HEADER  EMPTY12 13// PR391614#define FN limits.h>15#include <FN16 17#include <>    // expected-error {{empty filename}}18