summaryrefslogtreecommitdiffstats
path: root/test/Lexer/pragma-mark.c
blob: f4204aa9d8073d634e55b29251c90ae4edd6f07a (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang-cc %s -fsyntax-only -verify

// Lexer diagnostics shouldn't be included in #pragma mark.
#pragma mark Mike's world
_Pragma("mark foo ' bar")

#define X(S) _Pragma(S)
X("mark foo ' bar")

int i;