blob: 648a38ef3f9afd36ea3e2d31d3be7ba343459fa7 [file] [log] [blame]
Nico Webera0f15b02010-10-06 04:57:26 +00001// RUN: %clang_cc1 -fsyntax-only -fshort-wchar -verify %s
2
3void f() {
4 (void)L"\U00010000"; // expected-warning {{character unicode escape sequence too long for its type}}
Nico Weber59705ae2010-10-09 00:27:47 +00005
6 (void)L'\U00010000'; // expected-warning {{character unicode escape sequence too long for its type}}
7
Douglas Gregor5cee1192011-07-27 05:40:30 +00008 (void)L'ab'; // expected-warning {{extraneous characters in character constant ignored}}
Nico Weber59705ae2010-10-09 00:27:47 +00009
Douglas Gregor5cee1192011-07-27 05:40:30 +000010 (void)L'a\u1000'; // expected-warning {{extraneous characters in character constant ignored}}
Nico Webera0f15b02010-10-06 04:57:26 +000011}
12