summaryrefslogtreecommitdiff
path: root/test/CXX/lex/lex.trigraph/p1.cpp
blob: aacbc55b28feb4c4b80a7c0a385ec5e9f5df76e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 -fsyntax-only -trigraphs -Wtrigraphs -verify %s

??=pragma // expected-warning {{trigraph converted to '#' character}}

int a = '??/0'; // expected-warning {{trigraph converted to '\' character}}

int b = 1 ??' 0; // expected-warning {{trigraph converted to '^' character}}

int c ??(1]; // expected-warning {{trigraph converted to '[' character}}

int d [1??); // expected-warning {{trigraph converted to ']' character}}

int e = 1 ??! 0; // expected-warning {{trigraph converted to '|' character}}

void f() ??<} // expected-warning {{trigraph converted to '{' character}}

void g() {??> // expected-warning {{trigraph converted to '}' character}}

int h = ??- 0; // expected-warning {{trigraph converted to '~' character}}