xref: /llvm-project/clang/test/Lexer/multi-char-constants.c (revision 8fa45e1fd527269140c4e2a1652fef5500da16fd)
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wfour-char-constants -pedantic-errors %s
2 
3 int x = 'ab'; // expected-warning {{multi-character character constant}}
4 int y = 'abcd'; // expected-warning {{multi-character character constant}}
5