mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
0678294dba
llvm-svn: 163476
10 lines
246 B
C++
10 lines
246 B
C++
// RUN: %clang_cc1 -triple i386-pc-win32 -fsyntax-only -fno-wchar -verify %s
|
|
wchar_t x; // expected-error {{unknown type name 'wchar_t'}}
|
|
|
|
typedef unsigned short wchar_t;
|
|
void foo(const wchar_t* x);
|
|
|
|
void bar() {
|
|
foo(L"wide string literal");
|
|
}
|