blob: 5fc9ee398ecf17405ff57e43b0fa73ec048ceea2 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Clang supports a very limited subset of -traditional-cpp, basically we only
* intend to add support for things that people actually rely on when doing
* things like using /usr/bin/cpp to preprocess non-source files. */
/*
RUN: %clang_cc1 -traditional-cpp %s -E -o %t
RUN: FileCheck < %t %s
*/
/* CHECK: foo // bar
*/
foo // bar
|