blob: c558be58ee7b35979d7f45c01fe750f680d4d408 (
plain)
1
2
3
4
5
6
7
8
9
|
// RUN: %clang_cc1 %s -Eonly -verify
// expected-error@9 {{EOF}}
#define COMM / ## *
COMM // expected-error {{pasting formed '/*', an invalid preprocessing token}}
// Demonstrate that an invalid preprocessing token
// doesn't swallow the rest of the file...
#error EOF
|