c90.c 497 B

123456789101112131415
  1. /* RUN: %clang_cc1 %s -std=c89 -Eonly -verify -pedantic-errors
  2. * RUN: %clang_cc1 %s -std=c89 -E | FileCheck %s
  3. */
  4. /* PR3919 */
  5. #define foo`bar /* expected-error {{whitespace required after macro name}} */
  6. #define foo2!bar /* expected-warning {{whitespace recommended after macro name}} */
  7. #define foo3$bar /* expected-error {{'$' in identifier}} */
  8. /* CHECK-NOT: this comment should be missing
  9. * CHECK: {{^}}// this comment should be present{{$}}
  10. */
  11. // this comment should be present