blob: 3b9105fe6ee91b6bf6480affa7003e96a668e45f [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001/* RUN: %clang_cc1 %s -std=c89 -Eonly -verify -pedantic-errors
Jordan Rose693fdfa2013-03-05 22:51:04 +00002 * RUN: %clang_cc1 %s -std=c89 -E | FileCheck %s
Chris Lattner6272bcf2009-04-18 02:23:25 +00003 */
4
5/* PR3919 */
6
7#define foo`bar /* expected-error {{whitespace required after macro name}} */
Chris Lattnerd92fa472009-04-18 02:25:14 +00008#define foo2!bar /* expected-warning {{whitespace recommended after macro name}} */
Chris Lattner6272bcf2009-04-18 02:23:25 +00009
10#define foo3$bar /* expected-error {{'$' in identifier}} */
11
Jordan Rose693fdfa2013-03-05 22:51:04 +000012/* CHECK-NOT: this comment should be missing
13 * CHECK: {{^}}// this comment should be present{{$}}
14 */
15// this comment should be present