diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-02-26 23:36:18 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-02-26 23:36:18 +0000 |
| commit | 09e592ea3301cd75fe0325118b7db1034d5d1b68 (patch) | |
| tree | 442bfdea008839c0cb76319786f31b30f35c13a4 /clang/test/Sema/wchar.c | |
| parent | 7ec0bb6bc0b4dd8532afa5bdca276a2752a8ffb0 (diff) | |
| download | bcm5719-llvm-09e592ea3301cd75fe0325118b7db1034d5d1b68.tar.gz bcm5719-llvm-09e592ea3301cd75fe0325118b7db1034d5d1b68.zip | |
rename test
llvm-svn: 65587
Diffstat (limited to 'clang/test/Sema/wchar.c')
| -rw-r--r-- | clang/test/Sema/wchar.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/Sema/wchar.c b/clang/test/Sema/wchar.c new file mode 100644 index 00000000000..b7171fec7a5 --- /dev/null +++ b/clang/test/Sema/wchar.c @@ -0,0 +1,12 @@ +// RUN: clang %s -fsyntax-only -verify +#include <wchar.h> + +int check_wchar_size[sizeof(*L"") == sizeof(wchar_t) ? 1 : -1]; + +void foo() { + int t1[] = L"x"; + wchar_t tab[] = L"x"; + + int t2[] = "x"; // expected-error {{initialization}} + char t3[] = L"x"; // expected-error {{initialization}} +} |

