wchar.c revision a0f15b0848405ae16d63bd5d78c862a6526b338a
1// 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}}
5}
6
7