blob: a80b00eabe7eb55a98a622d0da45833f07d0084f [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -ftrigraphs -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}}